传递参数以承诺在cornerjs中的回调
发布时间:2020-12-17 07:46:14 所属栏目:安全 来源:网络整理
导读:我试图找出有没有办法将索引参数传递给承诺的回调函数.例如. serviceCall.$promise.then(function(object){ $scope.object = object;}); 现在我想传递一个数组索引参数 serviceCall.$promise.then(function(object,i){ $scope.object[i] = something;}); 这
我试图找出有没有办法将索引参数传递给承诺的回调函数.例如.
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); } }); (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |