我有一个链接列表,每个链接都有一个数字,从1到多少。我的目标是编写一个for循环,它遍历每个链接,运行HTTP get,然后将响应数据保存到数组对象中。我已经尝试了各种方法,但由于我正在处理$scope变量,所以很难找到任何方法。
for (let i = 0; i < 1000; i++) {
$http.get("Start of URL"
+ i + "End of URL")
.then(function (response){
$scope.datasingle = response.data;
});
$scope.datacombined = ??
}
试试这个方法;
const promisses = [];
for (let i = 0; i < 1000; i++) {
promisses.push( new Promise(function (resolve, reject) {
$http.get("Start of URL"+ i + "End of URL").then(function(response){
resolve(response.Data);
});
}));
}
Promise.all(promisses).then(function (values) {
console.log(values); //you will get all the resolved result in this array and do what you want
});