如何在 Array.forEach 中正确使用 Async
const arr = [1, 2, 3];
await Promise.all(arr.map(async (i) => {
await sleep(10 - i);
console.log(i);
}));
const arr = [1, 2, 3];
await Promise.all(arr.map(async (i) => {
await sleep(10 - i);
console.log(i);
}));
本文标题:在 Array.forEach 中使用 Async 实现全部执行
本文链接:https://www.haomeiwen.com/subject/opcetrtx.html
网友评论