Home > Web Front-end > JS Tutorial > body text

How to Execute Promises Sequentially with Array Parameters?

Mary-Kate Olsen
Release: 2024-10-20 14:59:02
Original
448 people have browsed it

How to Execute Promises Sequentially with Array Parameters?

Execute Promises Sequentially with Array Parameters

In some scenarios, you may need to execute promises sequentially, passing parameters from an array. This becomes necessary when the array is populated dynamically and the order of execution is crucial.

One approach to create a "pauseable loop" is by repeatedly using the .then method. However, this can be cumbersome and result in a pyramid-shaped promise chain.

Using Promises

A cleaner solution involves using Array.reduce to fold the promise chain into a single promise:

myArray.reduce(
  (p, x) =>
    p.then(() => myPromise(x)),
  Promise.resolve()
)
Copy after login

This approach creates a series of chained promises, ensuring sequential execution.

Using Async Functions

Alternatively, async functions allow for a more readable and efficient implementation. The following example uses an async function to iterate and execute the promises:

const forEachSeries = async (iterable, action) => {
  for (const x of iterable) {
    await action(x)
  }
}

forEachSeries(myArray, myPromise)
Copy after login

Collecting Return Values

If you need to collect the return values from the promises, you can use a modified version of the forEachSeries function called mapSeries:

const mapSeries = async (iterable, fn) => {
  const results = []

  for (const x of iterable) {
    results.push(await fn(x))
  }

  return results
}
Copy after login

This function iterates through the iterable, collecting the results of the promises and returning an array of the results.

By using these techniques, you can easily execute promises sequentially, passing parameters from an array, ensuring the order of execution and collecting the results as needed.

The above is the detailed content of How to Execute Promises Sequentially with Array Parameters?. For more information, please follow other related articles on the PHP Chinese website!

source:php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!