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

promise的状态什么时候会变成resolved?

看这段代码中,为什么在每个then中抛出来的promise的状态都是pending的呢?

触发了resolve()之后的then回调中,不应该变成resolved的状态了吗?

发现对于promise状态转换这里还是很有疑惑,经不起代码检验。求指教。

https://img1.sycdn.imooc.com//5bbee7ed000163e404040701.jpg

console.log('here we go')
let promise1 = new Promise(resolve=>{
  setTimeout(()=>{
    console.log(promise1)
    resolve();
    console.log(promise1)
  },1000)
})
.then(value=>{
  console.log(value);
  console.log('start')
  console.log(promise1)
  throw new Error('ahahhah')
})
.catch(err=>{
  console.log(err)
  console.log(promise1)
})
.then(()=>{
  console.log('2 then')
  console.log(promise1)
})
.catch(err=>{
  console.log(promise1)
  console.log('错误会向下传递吗?即使被捕获以后!no!'+err)
})
console.log(promise1)

正在回答

1 回答

先把console.log中的promise1 之类的加个分号 控制台返回primise实例是什么意思?pending不是在等待吗

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

promise的状态什么时候会变成resolved?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信