我在等待我的 forEach 循环(里面有一个Promise)完成时遇到了问题。我找不到任何真正的解决方案,这会使脚本等到结束,然后再继续执行。我无法使 someFunction 同步。
makeTree: function (arr) {
arr.forEach(function (resource) {
someModule.someFunction(resource).then(function () { //a Promise
//do something with the resource that has been modified with someFunction
});
});
// do something after the loop finishes
}