“TypeScript Foreach Async ожидает” Ответ

TS ожидает петля Foreach

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 TypeScript

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

C# foreach Loop Async, но подождите в конце

public async Task RunAsync()
{
    var tasks = new List<Task>();
 
    foreach (var x in new[] { 1, 2, 3 })
    {
        var task = DoSomethingAsync(x);
        tasks.Add(task);
    }
 
    await Task.WhenAll();
}
Kind Kookaburra

TypeScript Foreach Async ожидает

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

foreach async не работает

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

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

Ответы похожие на “TypeScript Foreach Async ожидает”

Вопросы похожие на “TypeScript Foreach Async ожидает”

Больше похожих ответов на “TypeScript Foreach Async ожидает” по TypeScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования