为了账号安全,请及时绑定邮箱和手机立即绑定

如何理解 resolve(Promise.resolve())内部执行了什么

如何理解 resolve(Promise.resolve())内部执行了什么

噜噜哒 2018-12-09 20:23:38
new Promise((resolve, reject) => {  console.log("async1 start");  console.log("async2");   resolve(Promise.resolve()); }).then(() => {  console.log("async1 end"); });new Promise(function(resolve) {  console.log("promise1");   resolve(); }).then(function() {  console.log("promise2"); }).then(function() {  console.log("promise3"); }).then(function() {  console.log("promise4"); });执行结果如下:async1 startasync2promise1promise2promise3async1 endpromise4求大神解释结果为什么是这样的?
查看完整描述

1 回答

?
青春有我

TA贡献1784条经验 获得超8个赞

Promise.resolve()返回一个新Promise对象,这时外面的resolve不会直接产生then,而会去检查这个Promise,导致了延迟

查看完整回答
反对 回复 2018-12-09
  • 1 回答
  • 0 关注
  • 489 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信