2
我有一個問題,等待我的forEach循環,裏面有一個承諾,完成。我找不到可以讓腳本等待它完成的解決方案。我不能使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
}
你使用的是angularjs嗎? –