Can I use $q.all in AngularJS with a function that does not return a .promise?
angularjs, javascript, promise
Solution
$q.when is used in scenarios where you don't know upfront whether the function is returning a promise or a direct value.
The following example/plunker shows a method, whose result is used in $q.all, and which returns different type of object (int or promise) every time it's called:
PLUNKER
app.controller('MainController', function($scope, $q, $http) {
var count = 0;
function doTask1() {
var defer = $q.defer();
$http.get('abc.json')
.success(function (data) {
defer.resolve(data);
})
.error(function () {
defer.reject();
});
return defer.promise;
}
/**
* This method will return different type of object
* every time it's called. Just an example of an unknown method result.
**/
function doTask2() {
count++;
var x = 99;
if(count % 2){
console.log('Returning', x);
return x;
} else {
var defer = $q.defer();
defer.resolve(x);
console.log('Returning', defer.promise);
return defer.promise;
}
}
$scope.fetchData = function(){
// At this point we don't know if doTask2 is returning 99 or promise.
// Hence we wrap it in $q.when because $q.all expects
// all array members to be promises
$q.all([
$q.when(doTask1()),
$q.when(doTask2())
])
.then(function(results){
$scope.results = results;
});
};
});
<body ng-app="myApp" ng-controller='MainController'>
<button ng-click="fetchData()">Run</button>
<pre>{{results|json}}</pre>
</body>
Problem
If I have the following functions: ``` doTask1: function ($scope) { var defer = $q.defer(); $http.get('/abc') .success(function (data) { defer.resolve(); }) .error(function () { defer.reject(); }); return defer.promise; }, doTask2: function ($scope) { var defer = $q.defer(); var x = 99; return defer.promise; }, ``` I'm told that I can wait for both promises like this: ``` $q.all([ doTask1($scope), doTask2($scope) ]) .then(function (results) { }); ``` How about if task 2 does not return a promise? I saw in the $q documentation for AngularJS that there is a "when". However I am not clear on how to use it and there's no example. Is it the case that I MUST have doTask2 return a promise by having the two lines: ``` var defer = q.defer() return defer.promise ``` or is there an easier way to do this?ll