7

我需要使用 for 循环更新数组中每个对象的数据,一旦捕获了所有数据,就运行一个函数。我不想在其中混合使用 jQuery 并以正确的 Angular 方式进行操作

这就是我正在做的,

    $scope.units = ['u1', 'u2', 'u3'];
    $scope.data = null;
    //get individual unit data
    $scope.getUnitData = function(unit){
        service.getUnitData(unit).success(function(response){
             $scope.data.push({'id' : response.id , 'value' : response.value});
        });
    };

    $scope.updateAllUnits = function(){
    $scope.data = null ; //remove existing data
    angular.forEach($scope.units,function(val,key){
      $scope.getUnitData(val);
    };
    console.log($scope.data); // Need to show all the data but currently it does not as the for    each loop didn't complete
    };

服务定义为。

app.factory('service',function($http){
     return {
        getUnitData : function(unit){
        return $http({
            url : myURL,
            method : 'GET',
            params : {'unit' : unit}
            });
        }

     }

});

在 for 循环中完成所有拉取操作后,如何接收回调?

4

1 回答 1

19

$http(...)打电话的结果是一个承诺。这意味着您可以使用$q.all等待它们的数组完成。

$scope.updateAllUnits = function(){
    $scope.data = null ; //remove existing data
    var promises = [];
    angular.forEach($scope.units,function(val,key){
      promises.push($scope.getUnitData(val));
    });
    $q.all(promises).then(function success(data){
      console.log($scope.data); // Should all be here
    }, function failure(err){
      // Can handle this is we want
    });
};
于 2013-10-21T20:56:33.260 回答