完整項目地址: [email protected]:xsk-walter/myPromise.git // index.js /* 1. Promise 就是一個類 在執行這個類的時候 需要傳遞一個執行器進去 執行器會立即執行 2. Promise 中有三種狀態 分別為 成功 fulfilled 失敗 r ...
完整項目地址: [email protected]:xsk-walter/myPromise.git
// index.js
/*
1. Promise 就是一個類 在執行這個類的時候 需要傳遞一個執行器進去 執行器會立即執行
2. Promise 中有三種狀態 分別為 成功 fulfilled 失敗 rejected 等待 pending
pending -> fulfilled
pending -> rejected
一旦狀態確定就不可更改
3. resolve和reject函數是用來更改狀態的
resolve: fulfilled
reject: rejected
4. then方法內部做的事情就判斷狀態 如果狀態是成功 調用成功的回調函數 如果狀態是失敗 調用失敗回調函數 then方法是被定義在原型對象中的
5. then成功回調有一個參數 表示成功之後的值 then失敗回調有一個參數 表示失敗後的原因
6. 同一個promise對象下麵的then方法是可以被調用多次的
7. then方法是可以被鏈式調用的, 後面then方法的回調函數拿到值的是上一個then方法的回調函數的返回值
*/
const MyPromise = require('./myPromise');
function p1 () {
return new MyPromise(function (resolve, reject) {
setTimeout(function () {
resolve('p1')
}, 2000)
})
}
function p2 () {
return new MyPromise(function (resolve, reject) {
reject('失敗')
// resolve('成功');
})
}
p2()
.then(value => console.log(value))
.catch(reason => console.log(reason))
// myPromise.js
const PENDING = 'pending'; // 等待
const FULFILLED = 'fulfilled'; // 成功
const REJECTED = 'rejected'; // 失敗
class MyPromise {
constructor (executor) {
try {
executor(this.resolve, this.reject)
} catch (e) {
this.reject(e);
}
}
// promsie 狀態
status = PENDING;
// 成功之後的值
value = undefined;
// 失敗後的原因
reason = undefined;
// 成功回調
successCallback = [];
// 失敗回調
failCallback = [];
resolve = value => {
// 如果狀態不是等待 阻止程式向下執行
if (this.status !== PENDING) return;
// 將狀態更改為成功
this.status = FULFILLED;
// 保存成功之後的值
this.value = value;
// 判斷成功回調是否存在 如果存在 調用
// this.successCallback && this.successCallback(this.value);
while(this.successCallback.length) this.successCallback.shift()()
}
reject = reason => {
// 如果狀態不是等待 阻止程式向下執行
if (this.status !== PENDING) return;
// 將狀態更改為失敗
this.status = REJECTED;
// 保存失敗後的原因
this.reason = reason;
// 判斷失敗回調是否存在 如果存在 調用
// this.failCallback && this.failCallback(this.reason);
while(this.failCallback.length) this.failCallback.shift()()
}
then (successCallback, failCallback) {
// 參數可選
successCallback = successCallback ? successCallback : value => value;
// 參數可選
failCallback = failCallback ? failCallback: reason => { throw reason };
let promsie2 = new MyPromise((resolve, reject) => {
// 判斷狀態
if (this.status === FULFILLED) {
setTimeout(() => {
try {
let x = successCallback(this.value);
// 判斷 x 的值是普通值還是promise對象
// 如果是普通值 直接調用resolve
// 如果是promise對象 查看promsie對象返回的結果
// 再根據promise對象返回的結果 決定調用resolve 還是調用reject
resolvePromise(promsie2, x, resolve, reject)
}catch (e) {
reject(e);
}
}, 0)
}else if (this.status === REJECTED) {
setTimeout(() => {
try {
let x = failCallback(this.reason);
// 判斷 x 的值是普通值還是promise對象
// 如果是普通值 直接調用resolve
// 如果是promise對象 查看promsie對象返回的結果
// 再根據promise對象返回的結果 決定調用resolve 還是調用reject
resolvePromise(promsie2, x, resolve, reject)
}catch (e) {
reject(e);
}
}, 0)
} else {
// 等待
// 將成功回調和失敗回調存儲起來
this.successCallback.push(() => {
setTimeout(() => {
try {
let x = successCallback(this.value);
// 判斷 x 的值是普通值還是promise對象
// 如果是普通值 直接調用resolve
// 如果是promise對象 查看promsie對象返回的結果
// 再根據promise對象返回的結果 決定調用resolve 還是調用reject
resolvePromise(promsie2, x, resolve, reject)
}catch (e) {
reject(e);
}
}, 0)
});
this.failCallback.push(() => {
setTimeout(() => {
try {
let x = failCallback(this.reason);
// 判斷 x 的值是普通值還是promise對象
// 如果是普通值 直接調用resolve
// 如果是promise對象 查看promsie對象返回的結果
// 再根據promise對象返回的結果 決定調用resolve 還是調用reject
resolvePromise(promsie2, x, resolve, reject)
}catch (e) {
reject(e);
}
}, 0)
});
}
});
return promsie2;
}
finally (callback) {
return this.then(value => {
return MyPromise.resolve(callback()).then(() => value);
}, reason => {
return MyPromise.resolve(callback()).then(() => { throw reason })
})
}
catch (failCallback) {
return this.then(undefined, failCallback)
}
static all (array) {
let result = [];
let index = 0;
return new MyPromise((resolve, reject) => {
function addData (key, value) {
result[key] = value;
index++;
if (index === array.length) {
resolve(result);
}
}
for (let i = 0; i < array.length; i++) {
let current = array[i];
if (current instanceof MyPromise) {
// promise 對象
current.then(value => addData(i, value), reason => reject(reason))
}else {
// 普通值
addData(i, array[i]);
}
}
})
}
static resolve (value) {
if (value instanceof MyPromise) return value;
return new MyPromise(resolve => resolve(value));
}
}
function resolvePromise (promsie2, x, resolve, reject) {
if (promsie2 === x) {
return reject(new TypeError('Chaining cycle detected for promise #<Promise>'))
}
if (x instanceof MyPromise) {
// promise 對象
// x.then(value => resolve(value), reason => reject(reason));
x.then(resolve, reject);
} else {
// 普通值
resolve(x);
}
}
module.exports = MyPromise;