Return interdependent async promises in $routeProvider resolve
Asked Answered
B

2

8

Consider the code:

var myApp = angular.module('myApp', []);

The routes:

myApp.config(['$routeProvider', function($routeProvider) {
        $routeProvider.when('/', {
            templateUrl: 'app.html', 
            controller:myAppController, 
            resolve:{
                resolveData:function(Resolver){
                    return Resolver();
                }
            }
        });
    });

Resolve:

myApp.factory('Resolver', ['$http', function($http){
    return function(){
        return $http({url: '/someurl',method: "GET"}).then(function(data) {

            // dependent call 1
            $http({url: '/someotherurl',method: "GET" }).then(function(data) {

            });

            // dependent call 2
            $http({url: '/someanotherurl',method: "GET" }).then(function(data) {

            });
        });
    }
}]);

Above I have nested 2 calls inside one as they are dependent on the data returned by the parent call.

What I want to do: return the Resolver when all of them have completed and not just the parent call.

I cannot use $q.all() because 2 of the calls are dependent of the first call.

In short, myAppController must be loaded only after all the 3 calls have completed.

Biller answered 2/8, 2013 at 7:8 Comment(0)
J
9

You should be using chaining promise and $q service to solve your problem .Just use the below sample code it should work

 myApp.factory('Resolver', ['$http','$q', function ($http,$q) {
              return function () {
                  var deferred = $q.defer();

                  $http({ url: '/someurl', method: "GET" }).then(function (data) {
                      return $http({ url: '/someurl', method: "GET" })
                  }).then(function (data) {
                      return $http({ url: '/someanotherurl', method: "GET" })
                  }).then(function (data) {
                      deferred.resolve(data);
                  });
                  return deferred.promise;

              }
          }]);
Jackelinejackelyn answered 2/8, 2013 at 7:25 Comment(4)
Hi Ajay! Thanks for the instant reply. But do you think I would be able to pass the data returned by the first call to the subsequent calls if I use chaining?Biller
yes the data inside every then function is the data returned from previousJackelinejackelyn
Chaining did not fit my need very well. I went for nested calls. But $q really helped me fix the thing. Thank you. Voted Up! :)Biller
If you are using $resource instead of $http, you need to take extra care to return a promise object. For example, if SomeService wraps a resource, you would return it like so: .then(function(data) { return SomeService.get(...).$promise; }). The eventual value of that $promise object is passed on as the data argument to the next function in the chain.Gooseflesh
M
0

This works for me:

            resolve : {
                message: function($q, $route, Restangular) {

                    var msgId = $route.current.params.msgId;
                    var deferred = $q.defer();

                    Restangular.one('message', msgId).get().then(function(message) {
                        Restangular.one('file', message.audioFile.id).get().then(function (blob) {
                            message.blob = blob;
                            deferred.resolve(message);
                        });
                    });
                    return deferred.promise;
                } 
            }
Marketplace answered 23/4, 2015 at 15:10 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.