我有一个函数需要在继续之前测试一组参数是否存在错误。根据项目的不同,测试可能涉及也可能不涉及对服务器的调用。
我已经实现了一个 $q 数组,以确保它们在评估测试结果之前都完成。我正在使用 $q.all 返回数组。
我知道所有的承诺都在解决,因为我可以逐一检查并查看解决方案,但由于某种原因,解决方案没有达到最高点。然后。
最上面的.then:
$scope.BigTest().then(function(result){
//examine the array of results & then call the function we want to execute
// we never ever reach here
},
function(error){
// handle the error
// we never ever reach here either
});
使用 $q,all() 的函数:
$scope.BigTest = function(){
var promises = new Array();
for (var x = 0; x < $scope.testingStuff.length; x ++){
var temp = $q.defer();
if ($scope.testingStuff[x].localTestingGoodEnough){
if (test){
temp.resolve(true);
}
else{
temp.resolve(false);
}
}
else{
var getServerStuff = ServerService.testServer($scope.testingStuff[x]);
getServerStuff.then(function(result){
// I've debugged through here and know this is successfully happening whenever necessary, and that the value is appropriate
temp.resolve(result.value);
},function(error){
temp.resolve(false);
});
}
promises[x] = temp.promise;
}
return $q.all(promises);
}
正如伪代码中所指出的,问题是当测试需要调用服务器时,整个承诺数组永远不会得到解决。
在不需要服务器调用的情况下,该集合按预期解析。
关于为什么这不能解决的任何想法?也许我没有正确使用 $q.all() ?