JavaScript手寫Promise核心原理
準備
- 首先,
promise有三種狀態(tài):pendingfulfilledrejected; promise在實例化操作中, 有兩個改變狀態(tài)的方法,分別為resolve,reject;promise有很多方法,詳情請見mdn, 本篇文章先實現(xiàn)promise的核心api:then和catch;
我們使用 es6 提供的 class 來實現(xiàn)
class MyPromise {
// 準備三個狀態(tài)
static PENDING = 'pending';
static FULFILLED = 'fulfilled';
static REJECTED = 'rejected';
constructor(executor) {
this.status = MyPromise.PENDING; // 表示promise的狀態(tài)
this.value = null; // 表示promise的值
try {
executor(this.resolve.bind(this), this.reject.bind(this))
} catch (error) {
this.reject(error)
}
}
resolve() {
}
reject() {
}
}
在這里 executor 就是傳遞過來的函數(shù),可以接收 resolve和reject,這里將內(nèi)部的兩個方法給傳入,如果在調(diào)用的過程中報錯了會調(diào)用reject方法
完善 resolve/reject
他們做的工作分為以下幾部
- 將狀態(tài)改為
pending為fulfilled或rejected - 可以接受一個值為當前的
promise的value
resolve(value) {
if (this.status === MyPromise.PENDING) {
this.status = MyPromise.FULFILLED;
this.value = value
}
}
reject(value) {
if (this.status === MyPromise.PENDING) {
this.status = MyPromise.REJECTED;
this.value = value
}
}
then
then 函數(shù)可以接受兩個參數(shù),分別為成功的回調(diào)函數(shù)和失敗的回調(diào)函數(shù),并且回調(diào)函數(shù)的默認為一個函數(shù)
- 狀態(tài)為
fulfilled執(zhí)行第一個回調(diào),rejected執(zhí)行第二個回調(diào) - 回調(diào)函數(shù)中給傳入當前的
value then的執(zhí)行為異步的
then(onFulfilled, onRejected) {
if (typeof onFulfilled !== 'function') {
onFulfilled = value => value
}
if (typeof onFulfilled !== 'function') {
onRejected = value => value
}
if (this.status === MyPromise.FULFILLED) {
setTimeout(() => {
onFulfilled(this.value)
})
}
if (this.status === MyPromise.REJECTED) {
setTimeout(() => {
onRejected(this.value)
})
}
}
驗證一下:
console.log(1)
new MyPromise((resolve, reject) => {
console.log(2)
resolve('成功')
}).then(res => console.log(res))
console.log(3)
// 打印 1 2 3 成功
當promise里面有異步代碼的時候,這個時候運行到.then方法 狀態(tài)為pending,下來增加一下異步任務的處理
異步處理
當狀態(tài)為pending的時候,表示執(zhí)行的是異步任務,這個時候我們可以增加一個callback,把異步執(zhí)行的內(nèi)容添加到這個callback中,當執(zhí)行完異步代碼的時候,會執(zhí)行異步函數(shù)的callback的任務
constructor(executor) {
// ...
this.callbacks = []; // 用來存儲回調(diào)函數(shù)的容器
// ...
}
resolve(value) {
// ...
this.callbacks.forEach(({ onFulfilled }) => onFulfilled(value))
// 當執(zhí)行到這里的時候 如果有onFulfilled 就說明已經(jīng)執(zhí)行完then方法給容器添加內(nèi)容了。把resolve的值傳遞給onFulfilled
}
reject(value) {
// ...
this.callbacks.forEach(({ onRejected }) => onRejected(value))
// 當執(zhí)行到這里的時候 如果有onRejected 就說明已經(jīng)執(zhí)行完then方法給容器添加內(nèi)容了。把reject的值傳遞給onFulfilled
}
then(onFulfilled, onRejected) {
// ...
if (this.status === MyPromise.PENDING) {
this.callbacks.push({
onFulfilled: value => {
setTimeout(() => {
onFulfilled(value)
})
},
onRejected: value => {
setTimeout(() => {
onRejected(value)
})
}
})
}
}
驗證一下:
new MyPromise((resolve, reject) => {
setTimeout(() => {
resolve('成功')
})
}).then(res => console.log(res))
// 打印 成功
then 函數(shù)可以鏈式調(diào)用,接下來我們完善一下
鏈式調(diào)用
鏈式調(diào)用的核心就是返回一個新的 promise,當成功調(diào)用的時候調(diào)用新的promise的resolve,失敗reject,并且鏈式調(diào)用會把前一個的返回值當作下一個的 resolve 的狀態(tài)
then(onFulfilled, onRejected) {
if (typeof onFulfilled !== 'function') {
onFulfilled = value => value
}
if (typeof onFulfilled !== 'function') {
onRejected = value => value
}
return new MyPromise((resolve, reject) => {
if (this.status === MyPromise.FULFILLED) {
setTimeout(() => {
const result = onFulfilled(this.value)
resolve(result)
})
}
if (this.status === MyPromise.REJECTED) {
setTimeout(() => {
const result = onRejected(this.value)
resolve(result)
})
}
if (this.status === MyPromise.PENDING) {
this.callbacks.push({
onFulfilled: value => {
setTimeout(() => {
const result = onFulfilled(value)
resolve(result)
})
},
onRejected: value => {
setTimeout(() => {
const result = onRejected(value)
resolve(result)
})
}
})
}
})
}驗證一下:
new MyPromise((resolve, reject) => {
setTimeout(() => {
reject('失敗')
})
}).then(res => res, err => err).then(res => console.log(res))
// 打印 失敗
如果.then的回調(diào)函數(shù)返回的是promise的情況也要做個處理
邊界處理
實現(xiàn)前:
new MyPromise((resolve, reject) => {
setTimeout(() => {
resolve('成功')
})
}).then(
res => new MyPromise((resolve, reject) => {
resolve(res)
}),
err => err
).then(res => console.log(res))
// 打印 { "status": "fulfilled", "value": "成功", "callbacks": [] }
當判斷返回值為 MyPromise 的時候,需要手動調(diào)用 .then 的方法取他的值,并且吧當前的 promise 的改變狀態(tài)的函數(shù)透出給 then 方法
then(onFulfilled, onRejected) {
if (typeof onFulfilled !== 'function') {
onFulfilled = value => value
}
if (typeof onFulfilled !== 'function') {
onRejected = value => value
}
return new MyPromise((resolve, reject) => {
if (this.status === MyPromise.FULFILLED) {
setTimeout(() => {
const result = onFulfilled(this.value)
if (result instanceof MyPromise) {
result.then(resolve, reject)
} else {
resolve(result)
}
})
}
if (this.status === MyPromise.REJECTED) {
setTimeout(() => {
const result = onRejected(this.value)
if (result instanceof MyPromise) {
result.then(resolve, reject)
} else {
resolve(result)
}
})
}
if (this.status === MyPromise.PENDING) {
this.callbacks.push({
onFulfilled: value => {
setTimeout(() => {
const result = onFulfilled(value)
if (result instanceof MyPromise) {
result.then(resolve, reject)
} else {
resolve(result)
}
})
},
onRejected: value => {
setTimeout(() => {
const result = onRejected(value)
if (result instanceof MyPromise) {
result.then(resolve, reject)
} else {
resolve(result)
}
})
}
})
}
})
}
驗證:
new MyPromise((resolve, reject) => {
setTimeout(() => {
resolve('成功')
})
}).then(
res => new MyPromise((resolve, reject) => {
resolve(res)
}),
err => err
).then(res => console.log(res))
// 打印 成功
到這里 .then 方法就實現(xiàn)差不多了,接下來實現(xiàn) catch 方法
catch
catch 方法可以處理拒絕的狀態(tài)和錯誤的狀態(tài):
catch(onFulfilled) {
if (typeof onFulfilled !== 'function') {
onFulfilled = value => value
}
return new MyPromise((resolve, reject) => {
if (this.status === MyPromise.REJECTED) {
setTimeout(() => {
const result = onFulfilled(this.value)
if (result instanceof MyPromise) {
result.then(resolve, reject)
} else {
resolve(result)
}
})
}
})
}
驗證:
new MyPromise((resolve, reject) => {
reject('失敗')
}).catch(res=> console.log(res))
// 打印 失敗
道理其實和 then 是相同的,到這里主功能基本上就差不多了,但是有很多重復的地方,優(yōu)化一下
優(yōu)化后完整代碼
class MyPromise {
// 準備三個狀態(tài)
static PENDING = 'pending';
static FULFILLED = 'fulfilled';
static REJECTED = 'rejected';
constructor(executor) {
this.status = MyPromise.PENDING; // 表示promise的狀態(tài)
this.value = null; // 表示promise的值
this.callbacks = [];
try {
executor(this.resolve.bind(this), this.reject.bind(this))
} catch (error) {
console.log(error)
this.reject(error)
}
}
resolve(value) {
if (this.status === MyPromise.PENDING) {
this.status = MyPromise.FULFILLED;
this.value = value
}
this.callbacks.forEach(({ onFulfilled }) => onFulfilled(value))
}
reject(value) {
if (this.status === MyPromise.PENDING) {
this.status = MyPromise.REJECTED;
this.value = value
}
this.callbacks.forEach(({ onRejected }) => onRejected(value))
}
parse({ callback, resolve, reject, value = this.value }) {
setTimeout(() => {
const result = callback(value)
if (result instanceof MyPromise) {
result.then(resolve, reject)
} else {
resolve(result)
}
})
}
then(onFulfilled, onRejected) {
if (typeof onFulfilled !== 'function') {
onFulfilled = value => value
}
if (typeof onFulfilled !== 'function') {
onRejected = value => value
}
return new MyPromise((resolve, reject) => {
if (this.status === MyPromise.FULFILLED) {
this.parse({ callback: onFulfilled, resolve, reject })
}
if (this.status === MyPromise.REJECTED) {
this.parse({ callback: onRejected, resolve, reject })
}
if (this.status === MyPromise.PENDING) {
this.callbacks.push({
onFulfilled: value => {
this.parse({ callback: onFulfilled, resolve, reject, value })
},
onRejected: value => {
this.parse({ callback: onRejected, resolve, reject, value })
}
})
}
})
}
catch(onFulfilled) {
if (typeof onFulfilled !== 'function') {
onFulfilled = value => value
}
return new MyPromise((resolve, reject) => {
if (this.status === MyPromise.REJECTED) {
this.parse({ callback: onFulfilled, resolve, reject })
}
})
}
}到此這篇關于JavaScript手寫Promise核心原理的文章就介紹到這了,更多相關JavaScript Promise內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
利用JavaScript將普通數(shù)字轉(zhuǎn)換為帶有千分位分隔符格式的多種實現(xiàn)方法
如何利用 JavaScript 將普通數(shù)字轉(zhuǎn)換為帶有千分位分隔符的格式,我們將介紹多種方法,包括使用內(nèi)置的 toLocaleString() 方法、Intl.NumberFormat 對象以及自定義函數(shù)來實現(xiàn)數(shù)字格式化,需要的朋友可以參考下2023-12-12
利用element-ui實現(xiàn)遠程搜索兩種實現(xiàn)方式
這篇文章主要介紹了利用element-ui的兩種遠程搜索實現(xiàn)代碼,本文通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友參考下吧2023-12-12
JS對話框_JS模態(tài)對話框showModalDialog用法總結
本篇文章主要是對JS對話框_JS模態(tài)對話框showModalDialog的用法進行了總結介紹,需要的朋友可以過來參考下,希望對大家有所幫助2014-01-01
JavaScript中獲取當前時間yyyymmddhhmmss的六種實現(xiàn)方式
js中提供了一個Date對象供我們獲取當前時間,下面這篇文章主要給大家介紹了關于JavaScript中獲取當前時間yyyymmddhhmmss的六種實現(xiàn)方式,文中通過代碼介紹的非常詳細,需要的朋友可以參考下2023-12-12

