首页 > Web开发 > 详细

手写实现js Promise

时间:2021-07-02 00:49:16      阅读:30      评论:0      收藏:0      [点我收藏+]
const PENDING = ‘pending‘
const FULFILLED = ‘fulfilled‘
const REJECTED = ‘rejected‘
function Promise(executor) {
    var _this = this
    this.state = PENDING; //状态
    this.value = undefined; //成功结果
    this.reason = undefined; //失败原因

    this.onFulfilled = [];//成功的回调
    this.onRejected = []; //失败的回调
    function resolve(value) {
        if(_this.state === PENDING){
            _this.state = FULFILLED
            _this.value = value
            _this.onFulfilled.forEach(fn => fn(value))
        }
    }
    function reject(reason) {
        if(_this.state === PENDING){
            _this.state = REJECTED
            _this.reason = reason
            _this.onRejected.forEach(fn => fn(reason))
        }
    }
    try {
        executor(resolve, reject);
    } catch (e) {
        reject(e);
    }
}
Promise.prototype.then = function (onFulfilled, onRejected) {
    if(this.state === FULFILLED){
        typeof onFulfilled === ‘function‘ && onFulfilled(this.value)
    }
    if(this.state === REJECTED){
        typeof onRejected === ‘function‘ && onRejected(this.reason)
    }
    if(this.state === PENDING){
        typeof onFulfilled === ‘function‘ && this.onFulfilled.push(onFulfilled)
        typeof onRejected === ‘function‘ && this.onRejected.push(onRejected)
    }
};

 

手写实现js Promise

原文:https://www.cnblogs.com/peter-web/p/14959842.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!