js
先来个小漩涡
话不多说,先来个小漩涡
展开
-
JavaScript 错误 - Throw 和 Try to Catch
JavaScript 错误 - Throw 和 Try to Catch1.对JavaScript 错误 - Throw 和 Try to Catch的理解2.举个简单的例子3.这里面throw4.应用1.对JavaScript 错误 - Throw 和 Try to Catch的理解try 语句使您能够测试代码块中的错误。catch 语句允许您处理错误。throw 语句允许您创建自定义错...原创 2020-03-24 11:38:44 · 456 阅读 · 0 评论 -
获取浏览器cookies属性值
// 调用函数 let AdminName = this.getCookie(属性名字); let AdminName = this.getCookie('AdminName=nature'); let AdminPwd = this.getCookie('AdminPwd=nature');getCookie(cname) { var nam...原创 2020-01-09 15:53:13 · 1221 阅读 · 0 评论 -
js 轮询请求后台接口
1.应用于规定时间检查数据接口或者定期请求某个任务是否执行完毕2. /*轮询*/ setTimer () { let timer; axios.post(url, params) .then(function (res) { if(res){ console.log(res);...原创 2020-01-09 09:52:14 · 6183 阅读 · 0 评论 -
Promise异步调用两个函数,前一个函数结束后执行另一个函数
Promise异步调用两个函数,前一个函数结束后执行另一个函数/*保存*/ onSave(content){ /*异步压缩执行*/ let self=this Promise.all([this.ZMFile(1), this.FMFile(2)]).then(function (results) { ...原创 2019-12-06 15:06:02 · 1471 阅读 · 0 评论