参考:我终于搞懂了async/await、promise和setTimeout的执行顺序 - 掘金 (juejin.cn)
知识点:
new Promise 是同步任务,会放到主进程中立即执行;而.then函数是异步任务,当promise状态结束时,就会将.then函数的内容放进异步队列中
await关键字要放在async函数内部,写在外面会报错;await的作用是等待右边的表达式完成,之后await会让出线程,阻塞async内后续的内容,先去执行async外的同步代码,
setTimeOut执行需要满足的条件:
主进程必须是空闲状态,否则到时间了主进程不空闲也不会执行setTimeOut函数
回调函数需要等到异步队列中的异步函数都执行完了参会执行
题目:
async function async1() {
console.log('async1 start');
await async2();
console.log('asnyc1 end');
}
async function async2() {
console.log('async2');
}
console.log('script start');
setTimeout(() => {
console.log('setTimeOut');
}, 0);
async1();
new Promise(function (reslove) {
console.log('promise1');
reslove();
}).then(function () {
console.log('promise2');
})
console.log('script end');
答案:
script start
async1 start
async2
promise1
script end
asnyc1 end
promise2
setTimeOut