1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| class LcPromise{ constructor(fn) { this.successList = [] this.failList = [] this.state = "pending" fn(this.resolveFn.bind(this,this.rejectFn.bind(this))) } then(successFn,failFn) { if(typeof successFn == "function") { this.successList.push(successFn) } if(typeof failFn == 'function') { this.failFn.push(failFn) } } catch(failFn){ if(typeof failFn == 'function') { this.failList.push(failFn) } } resolveFn(res) { this.state = "fullfilled" this.successList.forEach(function (item, index) { item(res) }) }.rejectFn(res) { this.state = 'rejected' this.failList.forEach(function(item,index){ item(res) }) throw Error(res) } }
|