“foreach async typecript” 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 typecript

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

Typscript foreach async erwarten

export async function asyncForEach<T>(array: Array<T>, callback: (item: T, index: number) => void) {
        for (let index = 0; index < array.length; index++) {
            await callback(array[index], index);
        }
    }

await asyncForEach(receipts, async (eachItem) => {
    await ...
})
droidbass

Ähnliche Antworten wie “foreach async typecript”

Fragen ähnlich wie “foreach async typecript”

Weitere verwandte Antworten zu “foreach async typecript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen