基本原理

今天心血来潮,哈哈,就想写个promise对象,需要说的是,我没有参考谁的代码,也没有去看promise的源码,当然,我实现的是一个乞丐版的promise,只有then & catch 的功能,其中catch只能抓取一次。仅供大伙闲暇看看,打发下时间。代码注释简单说了下,如下:

import _ from 'lodash'

var compose = _.flowRight

class Xpromise {
  constructor(f) {
    this._value = f.bind(undefined, this.resolve, this.reject) // 为传入的 函数 绑定resolve & reject 方法
    this.chain = undefined // 把then传入的方法 通过compose 处理成链式调用
    this.errFunc = [] // 把catch 传入的方法
    setTimeout( () => { // 如果new 一个新的对象,传入的函数不是异步的,则chain & errFunc 拿不到就执行了。所以使用定时器延时执行。
      this.errHandle(this._value)()
    }, 0)
    this.status = 'pending' // 设置Xpromise 状态 主要作用是 确保resolve & reject只能执行其中一个
    return this
  }
  resolve = (data) => {
    if(this.status == 'pending')
      this.status = 'resolved'
    this.status == 'resolved' && this.chain && this.chain(data)
  }
  reject = (data) => {
    if(this.status == 'pending')
      this.status = 'rejected'

    this.status = 'rejected' && this.errFunc[0](data)
  }
  then = (f) => {
    this.chain = this.chain? compose(this.errHandle(f), this.chain): this.errHandle(f)
    return this
  }
  errHandle = (f) => {// 为每个传入的函数包裹 错误检查 代码
    return function() {
      var args = Array.prototype.slice.call(arguments, 0)
      try{
        return f.apply(f,args)
      }catch(e){
        if(this.errFunc.length !== 0)
          this.errFunc[0](e)
        else
          throw new Error(e)

        return
      }
    }
  }
  catch = (f) => {
    this.errFunc.push(f)
    return this
  }
}

小乔流水乔
1 声望0 粉丝

前端攻城狮一只