js中Promise的状态探究

图片[1]-js中Promise的状态探究-uusu优素-乐高,模型,3d打印,编程

1、promise可以处于等待被赋值的等待态(pending),可以给出值并转换为解决态(resolved)。

2、一旦promise被一个值resolve丢失,它将始终保持这个值不再被resolve丢失。

实例

functionPromise(fn){
varstate='pending';
varvalue;
vardeferred;

functionresolve(newValue){
value=newValue;
state='resolved';

if(deferred){
handle(deferred);
}
}

functionhandle(onResolved){
if(state==='pending'){
deferred=onResolved;
return;
}

onResolved(value);
}

this.then=function(onResolved){
handle(onResolved);
};

fn(resolve);
}
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容