摘要:
在vue中如果直接使用与ajax的参数传递方式类型是不正确的,需要转化,方式有两种 1:使用 new URLSearchParams()构造参数 2.使用qs npm install qs --save import qs from 'qs' Vue.prototype.$qs = qs 阅读全文
摘要:
1. 在vue项目中 bulid > webpack.base.conf.js 中: 如图,在rules规则中有一条规则是校验代码的,也就是红框2那行,要取消可以直接注释掉这行,或者把红框1的函数注释掉。 2.在webstorm中取消编辑器代码校验: 阅读全文
摘要:
var str = 'aa dd c dddd e';str = str.replace(/\s+/g, ' ');//将字符串里的多个连续空格替换成一个空格 阅读全文
摘要:
//滚动条在内容更新时自动滚到底部var message = document.getElementById('message');message.scrollTop = message.scrollHeight; 阅读全文
摘要:
var m1 = moment('2018-08-14 11:00:00'), m2 = moment('2018-08-14 12:10:00'); console.log(m1)console.log(m2)console.log(m2.diff(m1, 'minute'));minute为分钟 阅读全文
摘要:
1 justify-content:center;//子元素水平居中 2 align-items:center;//子元素垂直居中 3 display:-webkit-flex;在父级元素上面加上上面3句话,就可以实现子元素水平垂直居中。 阅读全文
摘要:
var str = 'sdfsdfds '; str.replace(/(^\s*)|(\s*$)/g, ""); 阅读全文
摘要:
http://idea.singee77.com http://im.js.cn:8888 阅读全文
摘要:
第一 JSON文件里面不能有任何注释,不能使用单引号,必须使用双引号; 第二 JSON文件名不能使用特殊字符 - ,比如 test-a.json 否则不会返回任何数据也不会报错。 使用方法: $.getJSON("your file path", function(data){ console.lo 阅读全文
摘要:
1 、介绍一下标准的CSS的盒子模型?与低版本IE的盒子模型有什么不同的? 标准盒子模型:宽度=内容的宽度(content)+ border + padding + margin低版本IE盒子模型:宽度=内容宽度(content+border+padding)+ margin 2、 box-sizi 阅读全文