<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script>
class Promise2{
constructor(cb){
this.end=false;
this.err=false;
this.result=null;
cb((...args)=>{
this.end=true;
this.err=false;
this.result=args;
if(this.succ){
this.succ(...args);
}
}, (...args)=>{
this.end=true;
this.err=true;
this.result=args;
if(this.faild){
this.faild(...args);
}
});
}
then(succ, faild){
this.succ=succ;
this.faild=faild;
if(this.end){
if(this.err){
faild(...this.result);
}else{
succ(...this.result);
}
}
}
}
</script>
</body>
</html>
2019-06-16 手写简易promise(blue老师)
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1. 要编译的项目代码 src/index.js src/a.js src/common/util.js 2. 手...
- 小学语文修改病句的方法 修改病句是小学语文考试中常见的题型,在修改病句之前,我们应该清晰的了解有哪些病句现象,下面...
- 2019.06.20星期四,阳历五月十八。 节日:世界难民日,张天师(张道陵)诞辰日 【鼠】今日有外出,有购物,有...
- 一天的忙碌下来,有一个让心灵自省的时刻,我觉得感觉特别好,虽然因为各种事物的牵扯,往往要拖到1点多才睡。 作为创业...