摘要:
1. vue 2.6.0版本之前的slot插槽: 用slot='' 替代表示对应的插槽。 <!--1.插槽组件中: 匿名插槽和具名插槽--> <div> <slot></slot> <slot name='content'></slot> </div> <!--2. 使用插槽组件:--> <chil 阅读全文
摘要:
渐进式的理解和使用Render <!-- <template> <div class="container"> <h1>1</h1> </div> </template> --> <!-- 这里就不需要上面的 模板方式,直接通过render函数来生成组件 > <script> export defa 阅读全文
摘要:
安装Sass 一直出问题,直到........ 直接上吧 npm install sass@1.26.5 --save-dev npm install sass-loader@8.0.2 --save-dev 或者 npm i node-sass@^4.0.0 sass-loader@^10.0.1 阅读全文
摘要:
首先引入dll文件ICSharpCode.SharpZipLib.dll 管理NuGet包里面下载 压缩文件 /// <summary> /// 压缩文件 /// </summary> /// <param name="fileName">要压缩的所有文件(完全路径)</param> /// <pa 阅读全文
摘要:
JavaScript RegExp.test() 方法 定义和用法: test() 方法用于检测一个字符串是否匹配某个模式. 语法: RegExpObject.test(string); RegExpObject:正则表达式; string:必须参数,要检测的字符串; 返回值: 如果字符串:stri 阅读全文
摘要:
接收数据转Dictionary public static dynamic ConvertRequestData(JToken tk) { var sql = tk.Value<string>("sql"); var datas = tk.Value<JObject>("datas").Proper 阅读全文
摘要:
CSS 的 position 值中,有一个非常有用的值 -- position: sticky,通常会被用于各种吸顶,吸底,吸边的效果中。 如果你对 sticky 还不太熟悉,可以先看看我的这篇文章:使用 position:sticky 实现粘性布局,当然,这篇文章里面有稍微探讨 position: 阅读全文
摘要:
failed to connect to gitee.com port443 after 21471 第一步:打开ipaddress.com,查询如下两个域名,并分别记录下其对应的ip: 1、github.com 2、github.global.ssl.fastly.net 第二步:更新host文件 阅读全文
摘要:
使用Get方式传参 download() { let params = { pages: this.page, size: this.size, }; axios .get(this.$url + "/api/download", { params: params, responseType: "b 阅读全文
摘要:
几篇不错的流操作文章 使用MemoryStream和FileStream - 迷、踪 - 博客园 (cnblogs.com) 几种流的使用方法! - 迷、踪 - 博客园 (cnblogs.com) Stream、FileStream、MemoryStream的区别 - 听海漫步 - 博客园 (cnb 阅读全文
摘要:
微信小程序不错的文档 https://www.w3cschool.cn/weixinapp/weixinapp-yj9p38pp.html 阅读全文
摘要:
在研究rem布局时,无意中看到网易新闻移动端首页的导航栏用上了一个CSS 3的属性粘性定位position:sticky,它是相对定位(position:relative)和固定定位(position:fixed)的混合。 使用它,我们不再用监听scroll事件,即可实现导航栏滚动绝对定位的效果。 阅读全文
摘要:
一篇介绍flex属性,很不错的文章 https://yoksel.github.io/flex-cheatsheet/#section-display 阅读全文
摘要:
自定义微信小程序tab选项卡 demo.wxml: <view class="tab"> <view class="tab-left" bindtap="tabFun"> <view class="{{tabArr.curHdIndex=='0'? 'active' : ''}}" id="tab- 阅读全文
摘要:
<script src="xxx/layui/layui.js"></script> <script src="xxx/jquery.min.js"></script> <script> var down_windows; function exportAll(){ var url = "xxx.x 阅读全文