📜  nodejs如何在foreach循环中使用await - Javascript代码示例

📅  最后修改于: 2022-03-11 15:02:45.004000             🧑  作者: Mango

代码示例2
async function printFiles () {
  const files = await getFilePaths();

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