我仍在学习 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
});
}
}
});