摘要: class Promises { constructor(cb) { this.thenArr = []; //存放then函数里面的成功的函数和失败的函数 this.cb = cb; //promise中的回调函数 this.count = 0; //计数 this.returnText = nu 阅读全文
posted @ 2019-05-14 10:22 xxx=== 阅读(266) 评论(0) 推荐(0) 编辑