私はまだAngular JSを学習しており、異なるパラメーターを使用してlastfm APIに2つの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
});
}
}
});