“foreach async nicht funktionieren” Code-Antworten

Ts warten auf die Schleife

async function printFiles () {
  const files = await getFilePaths();

  await Promise.all(files.map(async (file) => {
    const contents = await fs.readFile(file, 'utf8')
    console.log(contents)
  }));
}
Glamorous Gharial

foreach async nicht funktionieren

async function printFiles () {
  const files = await getFilePaths();

  for (const file of files) {
    const contents = await fs.readFile(file, 'utf8');
    console.log(contents);
  }
}
Clumsy Cicada

Ähnliche Antworten wie “foreach async nicht funktionieren”

Fragen ähnlich wie “foreach async nicht funktionieren”

Weitere verwandte Antworten zu “foreach async nicht funktionieren” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen