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

Promise.resolve的参数是thenable时为什么不调用后面的then?

Promise.resolve的参数是thenable时为什么不调用后面的then?

慕的地6264312 2019-01-31 21:16:42
Promise.resolve() .then( value => {    console.log(0);    return Promise.resolve({         then() {            console.log(1);         }     }) }) .then( value => {         return Promise.resolve({         then() {           console.log(2);         }     }) }) .catch(()=>{   console.log('not yet'); })
查看完整描述

1 回答

?
慕姐8265434

TA贡献1813条经验 获得超2个赞

MDN promise thenable
thenable是这样用的

Promise.resolve({
  then(resolve) {    console.log(1);
    resolve(2)
  }
}).then(v=>{  console.log(v) //2})


查看完整回答
反对 回复 2019-01-31
  • 1 回答
  • 0 关注
  • 644 浏览
慕课专栏
更多

添加回答

举报

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