传递参数以承诺在cornerjs中的回调

前端之家收集整理的这篇文章主要介绍了传递参数以承诺在cornerjs中的回调前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图找出有没有办法将索引参数传递给承诺的回调函数.例如.
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;
      });
  }
});
你可以使用 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);
   }
});
原文链接:https://www.f2er.com/angularjs/143059.html

猜你在找的Angularjs相关文章