第598天 promise有哪几种状态?是如何变化的? [3+1官网](http://www.h-camel.com/index.html) [我也要出题](http://www.h-camel.com/contribution.html)
Activity
zsgww commentedon Dec 4, 2020
待定(pending): 初始状态。
已兑现(fulfilled):操作成功。
已拒绝(rejected):操作失败。
从pending到fulfilled,或者pending到rejected。
wChenonly commentedon Dec 4, 2020
1.pending(初始状态)
2.调用resolve(成功),pending->fulfilled
3.调用reject(失败),pending->rejected
而且状态改变以后,就不能在变了
a62527776a commentedon Dec 8, 2020
Promis分别有pending 状态 fulfilled状态 以及rejected状态
当调用resolve或者reject之后的就会变为 转为相应的状态 这两种状态 又称 settled状态
进入settled状态 会触发finally回调