Node.js - 在继续代码之前等待多个异步调用完成

时间:2018-06-19 09:22:15

标签: javascript node.js loops asynchronous npm

所以基本上我有一个带有异步函数的for循环。问题是程序在循环之后才继续,我希望它等到循环中调用的所有异步函数在代码继续之前完成。

在我的代码中,“bar”是一个包含其他json数组的json数组。

function write(bla) { // gets called one after another

  for(var url in bla) {
    asyncFunctionCall(url); // Executed about 50 times, it has to run parallel
  }
  // Wait for all called functions to finish before next stuff happens and
  // write gets called again.

}

for(var foo in bar) {
  // Here i parse the json array "foo" which is in the json array "bar"
  write(foo[bla]); // bla is an array of multiple urls.
}

异步函数调用如下所示:

var request = require('request');

request(url, function (error, response, body) {
  if(typeof response !== 'undefined') {
    if((response.statusCode >= 400 && response.statusCode <= 451)
    || (response.statusCode >= 500 && response.statusCode <= 511))
      return true;
    return false;
  }
  return false;
});

2 个答案:

答案 0 :(得分:7)

这里最简单的方法是直接或通过async / await语法使用promises。在这种情况下,可能是直接的。

首先,你必须让asyncFunctionCall返回一个承诺。看起来你总是返回一个布尔值,所以在这种情况下我们总是会解决这个问题:

function asyncFunctionCall(url) {
  return new Promise(resolve => {
    request(url, function (error, response, body) {
      if(typeof response !== 'undefined') {
        if((response.statusCode >= 400 && response.statusCode <= 451)
        || (response.statusCode >= 500 && response.statusCode <= 511)) {
          resolve(true);
          return;
        }
      }
      resolve(false);
    });
  });
}

然后,建立一个承诺数组,并使用Promise.all等待所有这些承诺完成。这些调用并行运行

function write(bla) { // gets called one after another
  const promises = [];
  for(var url in bla) {
    promises.push(asyncFunctionCall(url)); // Executed about 50 times.
  }
  return Promise.all(promises);
}

然后你可以建立一个来自write的所有承诺链,以便它们串联运行:

let p = Promise.resolve();
for (const foo in bar) { // <== Notice `const`
  // See "Edit" below
  p = p.then(() => {
    // Here i parse the json object "foo" in the json array "bar"
    // bla is an array of multiple urls.
    return write(foo[bla]));
  });
}

请注意,在该循环中对const使用letvar而不是foo非常重要,因为then回调会关闭它;请参阅this question's answers了解constlet为什么会这样做。

每次对write的调用都只会在前一个工作完成时进行。

然后等待整个过程完成:

p.then(() => {
  // All done
});

您没有在write的请求中显示任何使用布尔值,但是它们(作为数组)可用作{{1的承诺的分辨率值}}

我们调用write的过程的第二部分也可以用write函数编写,这可以使逻辑流更清晰:

async

然后整个过程:

async function doTheWrites() {
  for (const foo in bar) {
    // Here i parse the json object "foo" in the json array "bar"
    // bla is an array of multiple urls.
    await write(foo[bla]);
  }
}

...或者如果doTheWrites().then(() => { // All done }); 函数中的

async

答案 1 :(得分:1)

使函数异步并等待调用:

async function write(foo) {
   for(const url of foo) {
      await asyncFunctionCall(url);
   }  
}

(async function() {
   for(const foo of bar) {
     await  write(foo);
   }
})()

那将陆续执行一个请求。要在并行上执行它们,请使用Promise.all:

const write = foo => Promise.all(foo.map(asyncFunctionCall));

Promise.all(bar.map(write))
  .then(() => console.log("all done"));