摘要:
new Promise(function(resolve,reject){ resolve(); //数据处理完成 reject(); //数据处理出错 }).then(function A(){ //成功下一步 },function B(){ //出错做对应处理 }); Promise 三个状态;(每一个then都会返回新的一个Promise实例) pending //待定... 阅读全文
摘要:
数组的遍历方法 1...for(var i=0;i{ console.log(this,val,index,arr) //第三个参数就是原数组可要可不要; },bind(123)) //this指向会变箭头函数; ------------------------------------------------------------ 3...arr.map((val,index,arr)=>... 阅读全文