摘要: //主线程直接执行 console.log('1'); //丢到宏事件队列中 setTimeout(function() { console.log('2'); process.nextTick(function() { console.log('3'); }) new Promise(functi 阅读全文
posted @ 2020-06-11 18:28 FE-神鸟 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 事件循环 阅读全文
posted @ 2020-06-11 18:19 FE-神鸟 阅读(115) 评论(0) 推荐(0) 编辑
摘要: Promise用法 function fn(){ return new Promise((resolve,reject)=>{ 成功时调用resolve(数据) 失败时调用reject(错误) }) } fn().then(success,fail).then(success1,fail1) Pro 阅读全文
posted @ 2020-06-11 12:17 FE-神鸟 阅读(242) 评论(0) 推荐(0) 编辑