我需要检查" for循环"函数已经完成所有$ http请求处理,可以一劳永逸地刷新数据网格。目前,刷新发生在每个$ http请求中,这是不希望的行为。
已经阅读了一些关于angularjs $ q.all的内容,但不确定下面的方案中的实现。
非常感谢任何帮助/建议。提前谢谢。
以下是片段 -
function chainedAjax(param1, param2) {
var something = something;
$http({
// processing
}).then(function(responseData) {
// processing
return $http({
// processing
});
}, function(ex) {
// error
}).then(function(responseData) {
// processing
return $http({
// processing
});
}, function(ex) {
// error
}).then(function(responseData) {
// success - Done
finish();
}, function(ex) {
// error
});
}
function init(selectedDocs) {
var something = something;
angular.forEach(selectedDocs, function(item, arrayIndex) {
chainedAjax(item.param1, item.param2);
});
}
function finish() {
refreshDocsTable(); // refreshes the current grid
}
init(selectedItems); // call init function
答案 0 :(得分:2)
你需要这样的东西,假设你实际上需要为每个项目提出多个请求:
function chainedAjax(param1, param2) {
var something = something;
return $http({})
.then(function(responseData) {
// processing
return $http({});
})
.then(function(responseData) {
// processing
return $http({});
})
}
function dealWithError(error) {}
function init(selectedDocs) {
var something = something;
var requests = [];
angular.forEach(selectedDocs, function(item) {
requests.push(chainedAjax(item.param1, item.param2));
});
$q.all(requests)
.then(finish)
.catch(dealWithError);
}
答案 1 :(得分:0)
代码有点模糊,无法给出一个好的答案,但我认为chainedAjax函数中的外部$ http调用是您在执行x次时要检测的。似乎还有一些内部的$ http调用,我认为这些就是那些,你想要摆脱它们。你可以这样做:
function chainedAjax(param1, param2) {
var something = something;
return $http({
// processing
}).then(function(responseData) {
// processing
}, function(ex) {
// error
}).then(function(responseData) {
// processing
}, function(ex) {
// error
}).then(function(responseData) {
// success - Done
finish();
}, function(ex) {
// error
});
}
function init(selectedDocs) {
var something = something;
var count = 0, target = selectedDocs.length - 1;
angular.forEach(selectedDocs, function(item, arrayIndex) {
chainedAjax(item.param1, item.param2).then(function(){
count++;
if(count == target){
// All requests are done
// Now make one final call to update datatable
$http({
// parameters
}).then(function(response){
});
}
}).catch(function(err){
// A single http request failed, if you want to count that as well, uncomment the line below
// count++;
});
});
}
由于$ http已经返回一个承诺,因此您无需使用$ q在请求完成时发出信号。如果答案指向正确的方向,请告诉我。