您好,登錄后才能下訂單哦!
這篇文章主要講解了“Promise.prototype.finally的作用是什么”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Promise.prototype.finally的作用是什么”吧!
Promise.prototype.finally() 是 ES2018 新增的特性,它回一個 Promise ,在 promise 結束時,無論 Promise 運行成功還是失敗,都會運行 finally ,類似于我們常用的 try {...} catch {...} finally {...}
Promise.prototype.finally() 避免了同樣的語句需要在 then() 和 catch() 中各寫一次的情況
new Promise((resolve, reject) => { setTimeout(() => resolve("result"), 2000) }) .then(result => console.log(result)) .finally(() => console.log("Promise end")) // result // Promise end
reject :
new Promise((resolve, reject) => { throw new Error("error") }) .catch(err => console.log(err)) .finally(() => console.log("Promise end")) // Error: error // Promise end
注意:
finally 沒有參數
finally 會將結果和 error 傳遞
new Promise((resolve, reject) => { setTimeout(() => resolve("result"), 2000) }) .finally(() => console.log("Promise ready")) .then(result => console.log(result)) // Promise ready // result
不管 Promise 對象最后狀態如何,都會執行的操作
MyPromise.prototype.finally = function (cb) { return this.then(function (value) { return MyPromise.resolve(cb()).then(function () { return value }) }, function (err) { return MyPromise.resolve(cb()).then(function () { throw err }) }) }
感謝各位的閱讀,以上就是“Promise.prototype.finally的作用是什么”的內容了,經過本文的學習后,相信大家對Promise.prototype.finally的作用是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。