手写promise核心代码

本文详细介绍了Promise对象的内部实现,包括PENDING、FULFILLED和REJECTED三种状态转换,以及构造函数、resolve和reject方法。同时展示了如何通过then方法进行回调处理,解释了Promise链式调用的工作原理。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

class Promise {
      static PENDING = "待定"; static FULFILLED = "成功"; static REJECTED = "失败"
      constructor(func) {
        this.state = Promise.PENDING
        this.result = null
        this.resolveCallbacks = []
        this.rejectCallbacks = []

        try {
          func(this.resolve.bind(this), this.reject.bind(this))
        } catch (error) {
          this.reject(error)
        }
      }

      resolve(result) {
        setTimeout(() => {
          if (this.state === Promise.PENDING) {
            this.state = Promise.FULFILLED
            this.result = result;
            this.resolveCallbacks.forEach(callback => callback(result))
          }
        })
      }

      reject(result) {
        setTimeout(() => {
          if (this.state === Promise.PENDING) {
            this.state = Promise.REJECTED
            this.result = result;
            this.rejectCallbacks.forEach(callback => callback(result));
          }
        })
      }

      then(onFULFILLED, onREJECTED) {
        return new Promise((resolve, reject) => {
          onFULFILLED = typeof onFULFILLED === 'function' ? onFULFILLED : () => { }
          onREJECTED = typeof onREJECTED === 'function' ? onREJECTED : () => { }
          if (this.state === Promise.PENDING) {
            this.resolveCallbacks.push(onFULFILLED)
            this.rejectCallbacks.push(onREJECTED)
          }
          if (this.state === Promise.FULFILLED) {
            setTimeout(() => {
              onFULFILLED(this.result)
            })
          }

          if (this.state === Promise.REJECTED) {
            setTimeout(() => {
              onREJECTED(this.result)
            })
          }
        })
      }
    }

    let promise = new Promise((resolve, reject) => {
      resolve("111")
      // throw new Error("报错了")
    });
    promise
      .then(
        result => {
          console.log(result)
        }, result => {
          console.log(result.message)
        })
      .then(
        result => {
          console.log(result)
        }, result => {
          console.log(result.message)
        })

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值