簡體   English   中英

在 node.js 中使用 for 循環的 Promise.all

[英]Promise.all with for loop in node.js

我在 node.js 中收集從 1 到 10 的每個頁面的信息作為 API。

現在我使用這個代碼。

async function myWork() {
  let results = []
  let tmp
  let param
  for (i=1; i<11; i++) {
    param = {'page': i}
    tmp = await callMyApi(param) // return a list
    results.push(...tmp)
  }
  return results
}

在這種情況下,每個 callMyApi 的行為都類似於同步。

但我不在乎頁面順序。

所以,為了加快速度,我想使用 promise.all 之類的東西來並行處理它。

在這種情況下,如何在 for 循環中使用 promise.all?

您可以將 Promise.all() 與 concat() 一起使用。


async function myWork() {
  let results = [];
  let promises = [];
  let param;
  for (i=1; i<11; i++) {
    let param = {'page': i}
    let tmpPromise = callMyApi(param);
    promises .push(tmpPromise);
  }
  //promises is now an array of promises, and can be used as a param in Promise.all()
  let resolved = await Promise.all(promises);
  //resolved is an array of resolved promises, each with value returned by async call
let indivResult = resolved.forEach(a => 
  results = results.concat(a));
 //for each item in resolved array, push them into the final results using foreach, you can use different looping constructs here but forEach works too
  return results;
}

下面的例子:

async function myWork() {
  let results = [];
  let param;
  for (i = 1; i < 11; i++) {
    param = { page: i };
    results.push(callMyApi(param));
  }
  const res = await Promise.all(results);
  return res.flat();
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM