1. 程式人生 > 實用技巧 >ES-ES6:5.1 ES6 Promise 物件

ES-ES6:5.1 ES6 Promise 物件

ylbtech-ES-ES6:5.1 ES6 Promise 物件

1.返回頂部
1、

概述

是非同步程式設計的一種解決方案。

從語法上說,Promise 是一個物件,從它可以獲取非同步操作的訊息

Promise 狀態

狀態的特點

Promise 非同步操作有三種狀態:pending(進行中)、fulfilled(已成功)和 rejected(已失敗)。除了非同步操作的結果,任何其他操作都無法改變這個狀態。

Promise 物件只有:從 pending 變為 fulfilled 和從 pending 變為 rejected 的狀態改變。只要處於 fulfilled 和 rejected ,狀態就不會再變了即 resolved(已定型)

const p1 = new Promise(function(resolve,reject){
    resolve('success1');
    resolve('success2');
}); 
const p2 = new Promise(function(resolve,reject){  
    resolve('success3'); 
    reject('reject');
});
p1.then(function(value){  
    console.log(value); // success1
});
p2.then(function(value){ 
    console.log(value); 
// success3 });

狀態的缺點

無法取消 Promise ,一旦新建它就會立即執行,無法中途取消

如果不設定回撥函式,Promise 內部丟擲的錯誤,不會反應到外部

當處於 pending 狀態時,無法得知目前進展到哪一個階段(剛剛開始還是即將完成)。

then 方法

then 方法接收兩個函式作為引數,第一個引數是 Promise 執行成功時的回撥,第二個引數是 Promise 執行失敗時的回撥兩個函式只會有一個被呼叫

then 方法的特點

在 JavaScript 事件佇列的當前執行完成之前,回撥函式永遠不會被呼叫。

const p = new Promise(function
(resolve,reject){ resolve('success'); }); p.then(function(value){ console.log(value); }); console.log('first'); // first // success

通過.then形式新增的回撥函式,不論什麼時候,都會被呼叫。

通過多次呼叫

.then ,可以新增多個回撥函式,它們會按照插入順序並且獨立執行。
const p = new Promise(function(resolve,reject){
  resolve(1);
}).then(function(value){ // 第一個then // 1
  console.log(value);
  return value * 2;
}).then(function(value){ // 第二個then // 2
  console.log(value);
}).then(function(value){ // 第三個then // undefined
  console.log(value);
  return Promise.resolve('resolve'); 
}).then(function(value){ // 第四個then // resolve
  console.log(value);
  return Promise.reject('reject'); 
}).then(function(value){ // 第五個then //reject:reject
  console.log('resolve:' + value);
}, function(err) {
  console.log('reject:' + err);
});

then 方法將返回一個 resolved 或 rejected 狀態的 Promise 物件用於鏈式呼叫,且 Promise 物件的值就是這個返回值。

then 方法注意點

簡便的 Promise 鏈式程式設計最好保持扁平化,不要巢狀 Promise

注意總是返回或終止 Promise 鏈

const p1 = new Promise(function(resolve,reject){
  resolve(1);
}).then(function(result) {
  p2(result).then(newResult => p3(newResult));
}).then(() => p4());

建立新 Promise 但忘記返回它時,對應鏈條被打破,導致 p4 會與 p2 和 p3 同時進行。

大多數瀏覽器中不能終止的 Promise 鏈裡的 rejection,建議後面都跟上.catch(error => console.log(error));


更多文章

JavaScript Promise 物件

2、
2.返回頂部
3.返回頂部
4.返回頂部
5.返回頂部
1、 https://www.runoob.com/w3cnote/es6-promise.html 2、
6.返回頂部
作者:ylbtech
出處:http://ylbtech.cnblogs.com/
本文版權歸作者和部落格園共有,歡迎轉載,但未經作者同意必須保留此段宣告,且在文章頁面明顯位置給出原文連線,否則保留追究法律責任的權利。