美文网首页
在 Array.forEach 中使用 Async 实现全部执行

在 Array.forEach 中使用 Async 实现全部执行

作者: AR7_ | 来源:发表于2021-11-19 16:45 被阅读0次

    如何在 Array.forEach 中正确使用 Async

    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