Promise.all 的原理
生活随笔
收集整理的這篇文章主要介紹了
Promise.all 的原理
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
// all的原理
Promise.all = function(values){return new Promise((resolve,reject)=>{let results = []; // 結果數組let i = 0;let processData = (value,index)=>{results[index] = value;// 當成功的個數 和 當前的參數個數相等就把結果拋出去if(++i === values.length){resolve(results);}}for(let i = 0 ; i< values.length;i++){let current = values[i]; // 拿到數組中每一項// 判斷是不是一個promiseif((typeof current === 'object' && current !==null)|| typeof current == 'function'){// 如果是promiseif(typeof current.then == 'function'){// 就調用這個promise的then方法,把結果和索引對應上,如果任何一個失敗了返回的proimise就是一個失敗的promisecurrent.then(y=>{processData(y,i);},reject)}else{processData(current,i);}}else{processData(current,i);}}});
}
?
轉載于:https://www.cnblogs.com/guangzhou11/p/11322644.html
總結
以上是生活随笔為你收集整理的Promise.all 的原理的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 修改Thickbox,预加载图片和点击图
- 下一篇: Promise.race 的原理