摘要:
//主线程直接执行 console.log('1'); //丢到宏事件队列中 setTimeout(function() { console.log('2'); process.nextTick(function() { console.log('3'); }) new Promise(functi 阅读全文
摘要:
事件循环 阅读全文
摘要:
Promise用法 function fn(){ return new Promise((resolve,reject)=>{ 成功时调用resolve(数据) 失败时调用reject(错误) }) } fn().then(success,fail).then(success1,fail1) Pro 阅读全文