将参数传递给promisejs中的promise回调函数

时间:2014-07-25 19:26:55

标签: javascript angularjs promise callback

我想弄清楚是否有任何方法可以将索引参数传递给promise的回调函数。例如。

serviceCall.$promise.then(function(object){
    $scope.object = object;
});

现在我想传入一个数组索引参数

serviceCall.$promise.then(function(object,i){
    $scope.object[i] = something;
});

可以这样做吗?请告诉我。

以下是代码

StudyService.studies.get({id:    
$routeParams.studyIdentifier}).$promise.then(function(study) {
$scope.study = study;
for(var i=0;i<study.cases.length;i++){
  StudyService.executionsteps.get({id:   
  $routeParams.studyIdentifier,caseId:study.cases[i].id})
      .$promise.then(function(executionSteps,i){
      $scope.study.cases[i].executionSteps = executionSteps;
      });
  }
});

2 个答案:

答案 0 :(得分:21)

你可以使用closure

例如,在您的代码中,使用类似:

的内容
function callbackCreator(i) {
  return function(executionSteps) {
    $scope.study.cases[i].executionSteps = executionSteps;
  }
}
StudyService.studies.get({id: $routeParams.studyIdentifier})
  .$promise.then(function(study) {
    $scope.study = study;
    for(var i=0;i<study.cases.length;i++) {
      var callback = callbackCreator(i);
      StudyService.executionsteps.get({id: $routeParams.studyIdentifier,caseId:study.cases[i].id})
        .$promise.then(callback);
   }
});

答案 1 :(得分:0)

我已经做了类似的事情,我对每一个做出了承诺,然后在承诺数组上使用$q.all(),如:

$q.all( arrayOfPromises )
.then(function(results) {
   console.log(results[0], results[1], results[2]);
});