“Nodejs, wie man in der Foreach -Schleife erwartet” 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

Nodejs, wie man in der Foreach -Schleife erwartet

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 “Nodejs, wie man in der Foreach -Schleife erwartet”

Fragen ähnlich wie “Nodejs, wie man in der Foreach -Schleife erwartet”

Weitere verwandte Antworten zu “Nodejs, wie man in der Foreach -Schleife erwartet” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen