摘要: 去这个地址下载压缩包 https://files.cnblogs.com/files/AxinCode/mstsc.zip 然后解压到C:/windows win+R 输入mstsc即可。 阅读全文
posted @ 2020-03-25 10:04 秋风2016 阅读(2658) 评论(0) 推荐(0) 编辑
摘要: vue-append git地址https://github.com/hacke2/vue-append 阅读全文
posted @ 2020-02-24 08:57 秋风2016 阅读(2293) 评论(0) 推荐(0) 编辑
摘要: http-server启动本地服务设置端口号 http-server -p 443 阅读全文
posted @ 2020-02-18 16:30 秋风2016 阅读(6958) 评论(0) 推荐(1) 编辑
摘要: 字符串转数组: var str = '哈哈哈哈哈'; var arr = str.split(''); console.log(arr); 获取字符串长度 str.length 阅读全文
posted @ 2020-02-10 14:48 秋风2016 阅读(1043) 评论(0) 推荐(0) 编辑
摘要: "devServer" : { "port" : 8002, "disableHostCheck" : true, "proxy" : { "/report" : { "target" : "http://xx.xxxxx.com", "changeOrigin" : true, "secure" 阅读全文
posted @ 2020-02-06 17:55 秋风2016 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 1,jsonView git地址: https://github.com/gildas-lormeau/JSONView-for-Chrome 安装教程: https://blog.csdn.net/fly_hps/article/details/86606402 2,Chartset(修改网页编码 阅读全文
posted @ 2020-02-06 13:34 秋风2016 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 不要在v-for循环的内容里,对循环的子元素进行v-if或者method(item)等再处理; 如需处理遍历的内容,请在dom元素渲染之前处理好,即v-for绑定循环的内容必须是已经处理完成的数据,可以用计算属性或watch侦听提前进行处理!!! 阅读全文
posted @ 2020-01-19 16:06 秋风2016 阅读(2381) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/scode2/p/9098579.html 记录此篇文章出处见上面链接; 首先,我开发是以 vue 为技术栈,所以如题用的国际化插件是 vue-i18n,附上 github 传送门。 1、我们得先有开发环境,先有项目跑起来,我推荐如果是喜欢用 vue 阅读全文
posted @ 2020-01-09 15:49 秋风2016 阅读(632) 评论(0) 推荐(0) 编辑
摘要: jquery: $.cookie(COOKIE_COUNT_START, allTimeLimit, { path:'/', expires: 50 * 365 }); setCookie(COOKIE_COUNT_START, allTimeLimit, { path:'/', expires:  阅读全文
posted @ 2019-12-12 16:38 秋风2016 阅读(1496) 评论(0) 推荐(1) 编辑
摘要: // 对比两个对象的值是否完全相等 返回值 true/false isObjectValueEqual (a, b) { //取对象a和b的属性名 var aProps = Object.getOwnPropertyNames(a); var bProps = Object.getOwnProper 阅读全文
posted @ 2019-12-09 17:47 秋风2016 阅读(1974) 评论(0) 推荐(0) 编辑