Promise回调执行顺序问题,谁能帮我分析一下吗?
请问下各位大神,为什么4会排到3的后面?
Promise.resolve().then(() => {
console.log(0);
return Promise.resolve(4);
}).then((res) => {
console.log(res);
})
Promise.resolve().then(() => {
console.log(1);
}).then(() => {
console.log(2);
}).then(() => {
console.log(3);
}).then(() => {
console.log(5);
}).then(() => {
console.log(6);
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
前两天就有这个题,推荐你用
A+
规范源码看一下。我说说前两天看到的。
有两个地方它重新构建了promise。
Promise.resolve(4).then
的时候Promise.resolve(4);
等价于new Prmoise(function(resolve){resolve(4)})
,这个时候它返回值就是一次微任务了。然后下一句then的时候,又因为是promise所以又等了一轮。