foreach 中写添加同步属性总是报错

在foreach中加同步,总是报错,要怎么样加才行呢?

回答

图片.png

阮一峰老师的 ES6 教程中有相关的 async函数使用的注意点
这一章也给出了你这种情况的几种处理方案,比如使用 Promise.all + Array.prototype.map 的方案:

Promise.all(

yourArray.map(async (item, index) => await yourFunc(item, index))

).then(yourResolveFunc);

以上是 foreach 中写添加同步属性总是报错 的全部内容, 来源链接: utcz.com/a/42056.html

回到顶部