Reputation: 631
I have a service that must return to me countries list. But I want to cache country values to a variable to prevent multiple ajax calls. I have created a promise object but my html must call this service multiple times. When i call the service, sometimes it returns from ajax first time after that it returns from cache, sometimes it retruns from ajax 3 times after that cache. How can I handle this?
Here is my service:
var vm = this;
vm.countries;
vm.getCountries = function () {
var q = $q.defer();
if (vm.countries === undefined) {
return $http({
method: 'POST',
cache: true,
url: API + '/api/Global/Countries',
}).then(function successCallback(response) {
if (errorHandler(response.data)) {
vm.countries = response.data;
q.resolve(response.data)
console.log("ajax")
return q.promise;
}
});
} else {
console.log("cache")
q.resolve(vm.countries)
return q.promise;
}
}
Upvotes: 1
Views: 1758
Reputation: 868
If you are using it for binding the values to the templates. I think, it could be achieved using $resource
also.
angular.module('myApp').factory('Country', function($resource) {
return $resource(API + '/api/Global/Countries');
});
//in controller
var countries= Country.query(function() {
console.log(countries);
});
quote from resource's documentation
It is important to realize that invoking a $resource object method immediately returns an empty reference (object or array depending on isArray). Once the data is returned from the server the existing reference is populated with the actual data. This is a useful trick since usually the resource is assigned to a model which is then rendered by the view. Having an empty object results in no rendering, once the data arrives from the server then the object is populated with the data and the view automatically re-renders itself showing the new data. This means that in most cases one never has to write a callback function for the action methods.
https://docs.angularjs.org/api/ngResource/service/$resource
https://www.sitepoint.com/creating-crud-app-minutes-angulars-resource/
Upvotes: 1
Reputation: 6803
Return q.promise in all circumstances
vm.getCountries = function () {
var q = $q.defer();
if (vm.countries === undefined) {
return $http({
method: 'POST',
cache: true,
url: API + '/api/Global/Countries',
}).then(function successCallback(response) {
if (errorHandler(response.data)) {
vm.countries = response.data;
q.resolve(response.data)
console.log("ajax")
}
});
} else {
console.log("cache")
q.resolve(vm.countries)
}
return q.promise;
}
Upvotes: 3
Reputation: 81
You can cache the promise instead of the data. You may also want to consider what would happen in the error case here. The cached promise would need to be cleared.
var vm = this;
function getCountries () {
if (!vm.countryPromise) {
vm.countryPromise = $http({
method: 'POST',
cache: true,
url: API + '/api/Global/Countries',
}).then(function successCallback(response) {
if (errorHandler(response.data)) {
console.log("ajax")
return response.data;
}
});
} else {
console.log("cache")
}
return vm.countryPromise;
}
Upvotes: 2