美文网首页
promise 简单实现

promise 简单实现

作者: b0c44f1518ed | 来源:发表于2017-06-11 12:08 被阅读0次

    ```

    functionpro(doIt) {

    this.res=undefined;

    this.rej=undefined;

    this.success=function(success) {

    console.log(this);

    this.res= success;

    doIt(this.res,this.rej);

    };

    this.error=function(error) {

    this.rej= error;

    doIt(this.res,this.rej);

    };

    }

    newpro(function(res,rej) {

    setTimeout(function() {

    res();

    },1000)

    }).success(function() {

    alert(123);

    })

    ```

    相关文章

      网友评论

          本文标题:promise 简单实现

          本文链接:https://www.haomeiwen.com/subject/gzjhqxtx.html