手写promise

这篇博客详细介绍了Promise的内部构造函数Commitent,包括其状态管理(PENDING, FULFILLED, REJECTED)、resolve和reject方法的异步执行以及then方法的链式调用处理。通过一个实例展示了如何使用Commitent构造函数创建并处理Promise。
摘要由CSDN通过智能技术生成
class Commitent{
    static PENDING='pending'
    static FULFILLED='fulfilled'
    static REJECTED='rejected'
    constructor(func){
        this.result=null
        this.status=Commitent.PENDING
        //保存函数
        this.rejectCallbacks=[]
        this.resolveCallbacks=[]
        try{
             // 绑定this,在新实例创建后再实现resolve,reject方法,和实例不是一起执行的
             func(this.resolve.bind(this),this.reject.bind(this))
        }catch(error){
            // 立即执行,不是新实例创建后执行,不用绑定this
            this.reject(error)
        }
    }
    // reject和resolve是要在事件循环末尾执行的
    reject(result){
        setTimeout(() => {
            if(this.status===Commitent.PENDING){
                this.status=Commitent.REJECTED
                this.result=result
                this.rejectCallbacks.forEach(callback=>{
                    callback(result)
                })
            }
        }, )
    }
    resolve(result){
        setTimeout(() => {
            if(this.status===Commitent.PENDING){
                this.status=Commitent.FULFILLED
                this.result=result
                this.resolveCallbacks.forEach(callback=>{
                    callback(result)
                })
            }
        }, )
    }
    // then是在resolve或reject执行完毕之后才执行的
    then(OnFULFILLED,OnREJECTED){
        // 实现链式调用
        return new Commitent((resolve,reject)=>{
        //解决传入参数不是一个函数的情况
        OnFULFILLED =typeof OnFULFILLED==='function'? OnFULFILLED:()=>{}
        OnREJECTED =typeof OnREJECTED==='function'? OnREJECTED:()=>{}
        if(this.status===Commitent.FULFILLED){
            setTimeout(() => {
                OnFULFILLED(this.result)
            }, )
        }
        if(this.status===Commitent.REJECTED){
            setTimeout(() => {
                OnREJECTED(this.result)
            }, )
            
        }
        // 出现PENDING状态是因为then执行得过早了
        if(this.status===Commitent.PENDING){
            this.resolveCallbacks.push(OnFULFILLED)
            this.rejectCallbacks.push(OnREJECTED)
        }
        })
    }

}
const commitent=new Commitent((res,rej)=>{
    res('123')
}).then(
    result=>{
        console.log(result)
    }
)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值