8

我仍在学习 Angular JS,并且有这个控制器使用不同的参数向 lastfm api 发出两个 ajax 请求。我想知道每个请求何时完成,以便我可以显示两个请求的加载指示器。我已经对其进行了研究并阅读了有关承诺和 $q 服务的信息,但无法弄清楚如何将其合并到其中。有没有更好的方法来设置它?以及我如何知道每个请求何时完成。谢谢。

angular.module('lastfm')

.controller('ProfileCtrl', function ($scope, ajaxData, usersSharedInformation, $routeParams) {

    var username = $routeParams.user;

    //Get Recent tracks
    ajaxData.get({
        method: 'user.getrecenttracks',
        api_key: 'key would go here',
        limit: 20,
        user: username,
        format: 'json'
    })

    .then(function (response) {

        //Check reponse for error message
        if (response.data.message) {
            $scope.error = response.data.message;
        }  else {
            $scope.songs = response.data.recenttracks.track;
         }

    });

    //Get user info
    ajaxData.get({
        method: 'user.getInfo',
        api_key: 'key would go here',
        limit: 20,
        user: username,
        format: 'json'
    })

    .then(function (response) {

        //Check reponse for error message
        if (response.data.message) {
            $scope.error = response.data.message;
        }  else {
            $scope.user = response.data.user;
         }

    });
});

我有这个处理所有请求的工厂

angular.module('lastfm')

.factory('ajaxData', function ($http, $q) {

return {
    get: function (params) {
        return $http.get('http://ws.audioscrobbler.com/2.0/', {
            params : params
        });
    }
}

});
4

1 回答 1

16

很容易使用$q.all()$http本身返回一个承诺并且$q.all()在一系列承诺被解决之前不会解决

var ajax1=ajaxData.get(....).then(....);
var ajax2=ajaxData.get(....).then(....);

$q.all([ajax1,ajax2]).then(function(){
   /* all done, hide loader*/
})
于 2013-11-15T03:02:19.080 回答