循环中的异步调用延迟

Mul*_*yan 4 javascript database async-await knex.js

我有一个函数,可以在循环内对数据库进行两个异步调用。问题是返回函数在从循环中检索数据之前起作用。

const myFunc = async (customers) => {
  const customerList = customers.map(async (customer) => {
    const cashCollected = await knex('cash_collections')
      .sum('amount_collected as amount')
      .where('account_code', customer.code)
      .first();
    const orderValue = await knex('orders')
      .sum('discounted_price as amount')
      .where('customer_id', customer.id)
      .first();
    const customerData = {
      name: customer.name,
      outstandingBalance: (orderValue.amount - cashCollected.amount),
    };
    // This line works after console.log(customerList);
    console.log(customerData);
    return customerData;
  });
   // console and return works before data is retrieved 
   // (before console.log(customerData) is run)
  console.log(customerList);
  return customerList;
};

// Function is called in another place
myFunc()
Run Code Online (Sandbox Code Playgroud)

T.J*_*der 5

您可以通过在map回调中并行进行所有这些调用。如果您确实想这样做,则需要使用以下命令等待这些调用解决Promise.all

const customerList = await Promise.all(customers.map(async (customer) => {
    // ...
}));
Run Code Online (Sandbox Code Playgroud)

如果您要依次进行操作,请使用for循环并等待每个响应。:-)但是看起来并行是可以的。