实现一个自定义Promise
Promise 作为一种异步解决方案,一开始在社区流行,后面加入到 ES6 标准,成了“真香库”中不可或缺的成员。
这里实现一个自定义的Promise,通过一个异步回调和测试函数来测试最终的效果,暂未实现错误捕获:
const inform = (res) => setTimeout(res, 1000, "test"); const testPromise = pro => pro.then((val) => console.log(val) || val).then(console.log);
实现的原理是通过将参数和将执行的函数存入数组,仅当异步函数执行时触发整个执行队列,将整个队列的执行权交给第一个触发的回调函数,就像多米诺骨牌一样:
class Prom { static of(f) { return new Prom(f).push(f); } argArr = []; fArr = []; push(f) { f(this.monitor.bind(this)(this.run.bind(this))); return this; } monitor(f) { return (...args) => { this.argArr.push(args); f(); }; } then(f) { !this.over ? this.fArr.push(f) : this.nextPro.then(f); return this; } run() { while (this.fArr.length) { this.argArr.push([this.fArr.shift()(...this.argArr.shift())]); } } }
可通过执行下面的代码看到执行的效果和 Promise 是一样的:
testPromise(new Promise(inform)); testPromise(Prom.of(inform));
Promise 解决了回调函数嵌套的问题,使代码的可读性变得更高。它的局限性在于,链式调用无法解决多个异步函数按顺序执行的问题,而需要借助迭代器或 Thunk 函数等。
相关推荐
nmgxzm00 2020-11-10
xixixi 2020-11-11
88254251 2020-11-01
MarukoMa 2020-09-02
88234852 2020-09-15
陈旭阳 2020-08-31
whynotgonow 2020-08-19
前端开发Kingcean 2020-07-30
whynotgonow 2020-07-29
bowean 2020-07-08
前端开发Kingcean 2020-07-08
88520191 2020-07-05
前端开发Kingcean 2020-06-27
88481456 2020-06-18
whynotgonow 2020-06-16
88520191 2020-06-13
88520191 2020-06-13
89500297 2020-06-13