Promise は、非同期プログラミングの新しいソリューションです。 ES6 はこれを言語標準に組み込み、その使用法を統一し、Promise オブジェクトをネイティブに提供します。
その導入により、非同期プログラミングの苦境が大幅に改善され、コールバック地獄が回避されました。これは、コールバック関数やイベントなどの従来のソリューションよりも合理的かつ強力です。
Promise は、簡単に言えば、将来完了するイベント (通常は非同期操作) の結果を保持するコンストラクターです。構文的には、Promise は非同期操作メッセージを取得できるオブジェクトです。 Promise は統合された API を提供し、さまざまな非同期操作を同じ方法で処理できるようにします。
ES5 のコールバック地獄の問題を効果的に解決できます (深くネストされたコールバック関数を回避します)。
リーリー
Promiseの基本的な使い方
リーリー
約束する、解決する
リーリー
resolve(11) コードでは、Promise オブジェクトが解決済み状態に遷移し、引数 11 を後続の .then で指定された onFulfilled 関数に渡します。 Promise オブジェクトは、新しい Promise 構文を使用するか、Promise.resolve(value) を使用して作成できます。
約束、拒否
リーリーPromise のメソッド
then メソッドは、(元の Promise インスタンスではなく) 新しい Promise インスタンスを返します。したがって、最初のメソッドの後に別の then メソッドが呼び出される、連鎖構文を使用できます。
非同期イベントを順番に書き込む必要があり、それらをシリアルに実行する必要がある場合は、次のように書くことができます:
リーリー
キャッチ()
p.then((data) => { console.log('resolved',data); },(err) => { console.log('rejected',err); } ); p.then((data) => { console.log('resolved',data); }).catch((err) => { console.log('rejected',err); });
The all method can be used to complete parallel tasks. It takes an array as an argument, where each item in the array is a Promise object. When all the Promises in the array have reached the resolved state, the state of the all method will also become resolved. However, if even one of the Promises changes to rejected, the state of the all method will become rejected.
let promise1 = new Promise((resolve,reject)=>{ setTimeout(()=>{ resolve(1); },2000) }); let promise2 = new Promise((resolve,reject)=>{ setTimeout(()=>{ resolve(2); },1000) }); let promise3 = new Promise((resolve,reject)=>{ setTimeout(()=>{ resolve(3); },3000) }); Promise.all([promise1,promise2,promise3]).then(res=>{ console.log(res); //result:[1,2,3] })
When the all method is called and successfully resolves, the result passed to the callback function is also an array. This array stores the values from each Promise object when their respective resolve functions were executed, in the order they were passed to the all method.
The race method, like all, accepts an array where each item is a Promise. However, unlike all, when the first Promise in the array completes, race immediately returns the value of that Promise. If the first Promise's state becomes resolved, the race method's state will also become resolved; conversely, if the first Promise becomes rejected, the race method's state will become rejected.
let promise1 = new Promise((resolve,reject)=>{ setTimeout(()=>{ reject(1); },2000) }); let promise2 = new Promise((resolve,reject)=>{ setTimeout(()=>{ resolve(2); },1000) }); let promise3 = new Promise((resolve,reject)=>{ setTimeout(()=>{ resolve(3); },3000) }); Promise.race([promise1,promise2,promise3]).then(res=>{ console.log(res); //result:2 },rej=>{ console.log(rej)}; )
So, what is the practical use of the race method? When you want to do something, but if it takes too long, you want to stop it; this method can be used to solve that problem:
Promise.race([promise1,timeOutPromise(5000)]).then(res=>{})
The finally method is used to specify an operation that will be executed regardless of the final state of the Promise object. This method was introduced in the ES2018 standard.
promise .then(result => {···}) .catch(error => {···}) .finally(() => {···});
In the code above, regardless of the final state of the promise, after the then or catch callbacks have been executed, the callback function specified by the finally method will be executed.
In work, you often encounter a requirement like this: for example, after sending an A request using AJAX, you need to pass the obtained data to a B request if the first request is successful; you would need to write the code as follows:
let fs = require('fs') fs.readFile('./a.txt','utf8',function(err,data){ fs.readFile(data,'utf8',function(err,data){ fs.readFile(data,'utf8',function(err,data){ console.log(data) }) }) })
The above code has the following drawbacks:
The latter request depends on the success of the previous request, where the data needs to be passed down, leading to multiple nested AJAX requests, making the code less intuitive.
Even if the two requests don't need to pass parameters between them, the latter request still needs to wait for the success of the former before executing the next step. In this case, you also need to write the code as shown above, which makes the code less intuitive.
After the introduction of Promises, the code becomes like this:
let fs = require('fs') function read(url){ return new Promise((resolve,reject)=>{ fs.readFile(url,'utf8',function(error,data){ error && reject(error) resolve(data) }) }) } read('./a.txt').then(data=>{ return read(data) }).then(data=>{ return read(data) }).then(data=>{ console.log(data) })
This way, the code becomes much more concise, solving the problem of callback hell.
以上がJavaScript: Promise 完全ガイドの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。