“Foreach Async TypeScript” Ответ

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

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 TypeScript”

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

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

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

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