手写极简版promise

为了更更加好的理解promise ,简单的学习了一下手写promise。
于是我就简单的学了一下 ,首先分步操作,
先实现基础部分,不考虑链式调用,

function myPromise(executor) {
    var _this = this;
    this.state = 'pending';
    this.value = undefined;
    this.reason = undefined;
    this.onFulfilledFunc = [];//保存成功回调
    this.onRejectedFunc = [];//保存失败回调
    //其它代码略...
 function resolve(value) {
        //当状态为pending时再做更新
        if (_this.state === 'pending') {
            _this.value = value;//保存成功结果
            _this.state = 'resolved';
        }

    }

    function reject(reason) {
    //当状态为pending时再做更新
        if (_this.state === 'pending') {
            _this.reason = reason;//保存失败原因
            _this.state = 'rejected';
        }
    }
//这里执行promise传入的函数部分
try {
        executor(resolve, reject); //马上执行
            } 
catch (error) {
                reject(error)
            }
}

then方法的实现
当myPromise的状态发生了改变,不论是成功或是失败都会调用then方法,所以,then方法的实现也很简单,根据state状态来调用不同的回调函数即可,但是由于执行的时候可能状态还是pending 所以执行的时候如果是pending 我们则把传入的成功和失败的回调函数传入callback数组里面 等resolve函数里面去执行

myPromise.prototype.then = function (onFulfilled, onRejected) {
    //等待态,此时异步代码还没有走完
    if (this.state === 'pending') {
        if (typeof onFulfilled === 'function') {
            this.onFulfilledFunc.push(onFulfilled);//保存回调
        }
        if (typeof onRejected === 'function') {
            this.onRejectedFunc.push(onRejected);//保存回调
        }
    }
    //其它代码略...
}

链式调用
romise处理异步代码最强大的地方就是支持链式调用,这块也是最复杂的,我们先梳理一下规范中是怎么定义的:
每个then方法都返回一个新的Promise对象(原理的核心)
如果then方法中显示地返回了一个Promise对象就以此对象为准,返回它的结果
如果then方法中返回的是一个普通值(如Number、String等)就使用此值包装成一个新的Promise对象返回。
如果then方法中没有return语句,就视为返回一个用Undefined包装的Promise对象
若then方法中出现异常,则调用失败态方法(reject)跳转到下一个then的onRejected
如果then方法没有传入任何回调,则继续向下传递(值的传递特性)。
看起来抽象 代码解释看下面简书博客
resolve 和reject的改造:
对于 resolve 函数来说,首先需要判断传入的值是否为 Promise 类型
为了保证函数执行顺序,需要将两个函数体代码使用 setTimeout 包裹起来

function resolve(value) {
                // 对于 resolve 函数来说,首先需要判断传入的值是否为 Promise 类型
                if (value instanceof myPromise) {
                    return value.then(resolve, reject)
                }
                setTimeout(() => {
                    if (_this.state = 'pending') {
                        _this.value = value;
                        _this.onFullfiledCallBack.forEach(fn => fn(value));
                        _this.state = 'resolved';
                    }
                }, 0)

            }
            function reject(reason) {
                setTimeout(() => {
                    if (_this.state = 'pending') {
                        _this.reason = reason;
                        _this.onRejectCallBack.forEach(fn => fn(value));
                        _this.state = 'rejected';
                    }
                }, 0)

            }

接下来改造的then代码:

myPromise.prototype.then = function (onFullfiled, onRejected) {
            let self = this;
            let promise2 = null;
            onFullfiled = typeof onFullfiled === 'function' ? onFullfiled : v => v;
            onRejected = typeof onRejected === 'function' ? onRejected : r => { throw r };
            if (this.state == 'pending') {
                return (promise2 = new myPromise((resolve, reject) => {
                    self.onFullfiledCallBack.push(() => {
                        try {
                            let x = onFullfiled(self.value);
                            //处理then不同的返回值和下面传递链的传递方式
                            resolutionProduce(promise2, x, resolve, reject);
                        } catch (e) {
                            reject(e)
                        }
                    });
                    self.onRejectCallBack.push(() => {
                        try {
                            let x = onRejected(self.value);
                            resolutionProduce(promise2, x, resolve, reject);
                        } catch (e) {
                            reject(e)
                        }
                    })
                }))
            }
        }

思路跟之前基本一致,只是说把之前返回值改成promise,同时捕获异常,在status状态为FULFILLED或者REJECTED的时候执行得加上异步setTimeout包裹。 接下来完成最核心的resolutionProduce函数:

function resolutionProduce(promise, x, resolve, reject) {
            if (promise === x) {
                reject(new TypeError('error'))
            }
            if (x !== null && (typeof x === 'object' || typeof x === 'function')) {
                // 可能是个对象或者函数
                try {
                    let then = x.then;
                    if (typeof then === 'function') {
                        //取出的then是函数,那么执行函数 ,就将x作为函数的作用域 this 调用之,并且传递两个回调函数作为参数,第一个参数叫做 resolvePromise ,第二个参数叫做 rejectPromise
                        let y = then.call(x, y => {
                            //递归调用
                            resolutionProduce(promise, y, resolve, reject);
                        }, r => reject(r))
                    } else {
                        resolve(x);
                    }
                } catch (error) {
                    reject(error)
                }
            } else {
                //可能是普通值
                resolve(x); //把第一个then的返回值传递给返回的promise值里面的then函数
            }

        }

然后判断 x 是否为对象或者函数,如果都不是的话,将 x 传入 resolve 中
如果 x 是对象或者函数的话,先把 x.then 赋值给 then,然后判断 then 的类型,如果不是函数类型的话,就将 x 传入 resolve 中
如果 then 是函数类型的话,就将 x 作为函数的作用域 this 调用之,并且传递两个回调函数作为参数,第一个参数叫做 resolvePromise ,第二个参数叫做 rejectPromise,如果Promise对象转为成功态或是失败时传入的还是一个Promise对象,此时应该继续执行,直到最后的Promise执行完。所以递归操作(这一点我有点绕)
以上代码在执行的过程中如果抛错了,将错误传入 reject 函数中

最后极简版手写promise就完成了
最后使用diamante验证:

let p = new myPromise((resolve, reject) => {
            setTimeout(() => {
                resolve('1')
            }, 1000)
        })
        p.then(data =>{
            console.log(data)
            return new myPromise((resolve,reject)=>{
                setTimeout(()=>{
                    console.log('我是then里面打印出来的');
                    resolve('2222')
                },1000)
            })
        } ).then(data=>console.log(data));

能正确打印 结束!
最终完整代码:

function myPromise(executor) {
            let _this = this;
            this.state = 'pending';
            this.value = undefined;
            this.reason = undefined;
            this.onFullfiledCallBack = [];
            this.onRejectCallBack = [];

            function resolve(value) {
                // 对于 resolve 函数来说,首先需要判断传入的值是否为 Promise 类型
                if (value instanceof myPromise) {
                    return value.then(resolve, reject)
                }
                setTimeout(() => {
                    if (_this.state = 'pending') {
                        _this.value = value;
                        _this.onFullfiledCallBack.forEach(fn => fn(value));
                        _this.state = 'resolved';
                    }
                }, 0)

            }
            function reject(reason) {
                setTimeout(() => {
                    if (_this.state = 'pending') {
                        _this.reason = reason;
                        _this.onRejectCallBack.forEach(fn => fn(value));
                        _this.state = 'rejected';
                    }
                }, 0)

            }
            try {
                executor(resolve, reject); //马上执行
            } catch (error) {
                reject(error)
            }
        }
        myPromise.prototype.then = function (onFullfiled, onRejected) {
            let self = this;
            let promise2 = null;
            onFullfiled = typeof onFullfiled === 'function' ? onFullfiled : v => v;
            onRejected = typeof onRejected === 'function' ? onRejected : r => { throw r };
            if (this.state == 'pending') {
                return (promise2 = new myPromise((resolve, reject) => {
                    self.onFullfiledCallBack.push(() => {
                        try {
                            let x = onFullfiled(self.value);
                            //处理then不同的返回值和下面传递链的传递方式
                            resolutionProduce(promise2, x, resolve, reject);
                        } catch (e) {
                            reject(e)
                        }
                    });
                    self.onRejectCallBack.push(() => {
                        try {
                            let x = onRejected(self.value);
                            resolutionProduce(promise2, x, resolve, reject);
                        } catch (e) {
                            reject(e)
                        }
                    })
                }))
            }
        }
        //处理then返回值如何传递和下一个then的值
        function resolutionProduce(promise, x, resolve, reject) {
            if (promise === x) {
                reject(new TypeError('error'))
            }
            if (x !== null && (typeof x === 'object' || typeof x === 'function')) {
                // 可能是个对象或者函数
                try {
                    let then = x.then;
                    if (typeof then === 'function') {
                        //取出的then是函数,那么执行函数 ,就将x作为函数的作用域 this 调用之,并且传递两个回调函数作为参数,第一个参数叫做 resolvePromise ,第二个参数叫做 rejectPromise
                        let y = then.call(x, y => {
                            //递归调用
                            resolutionProduce(promise, y, resolve, reject);
                        }, r => reject(r))
                    } else {
                        resolve(x);
                    }
                } catch (error) {
                    reject(error)
                }
            } else {
                //可能是普通值
                resolve(x); //把第一个then的返回值传递给返回的promise值里面的then函数
            }

        }
        let p = new myPromise((resolve, reject) => {
            setTimeout(() => {
                resolve('1')
            }, 1000)
        })
        p.then(data =>{
            console.log(data)
            return new myPromise((resolve,reject)=>{
                setTimeout(()=>{
                    console.log('我是then里面打印出来的');
                    resolve('2222')
                },1000)
            })
        } ).then(data=>console.log(data));

主要还是参考了几篇文章:
https://www.jianshu.com/p/c633a22f9e8c
https://blog.csdn.net/weixin_34348111/article/details/91374448
https://segmentfault.com/a/1190000020505870

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容