【发布时间】:2015-09-25 13:01:44
【问题描述】:
我正在学习 promises 并且正在努力解决以下问题。
在这种情况下正在运行三个函数。
//returns an search query in JSON format
filterSearch()
// searches Parse.com and returns an array of values
.then(performSearch)
// I am passing the array of values to exerciseSearch and a another value (term - string)
.then(function(result) {
exerciseSearch(result, term);
})
// The results from the search is displayed in scope.
.then(function(exercises) {
$scope.allExercises = exercises;
}, function(error) {
console.log('error');
});
【问题讨论】:
-
你的意思可能是
return exerciseSearch(result, term)
标签: javascript angularjs asynchronous promise angular-promise