Is there any jQuery.ajaxSuccess equivalent for AngularJS
angularjs, jquery
Solution
You can achieve this with interceptors. Example:
myapp.config(function($httpProvider) {
var myInterceptor = ['$rootScope','$q', function(scope, $q) {
function onSuccess(response) {
return response;
}
function onError(response) {
return $q.reject(response);
}
return function(promise) {
return promise.then(onSuccess, onError);
};
}];
$httpProvider.responseInterceptors.push(myInterceptor);
});
This will capture all your angular $http and $resource calls and call onError or onSuccess before continuing with your custom callbacks.
Problem
I'm trying to convert a module written using jQuery to AngularJS. I have an `ajaxSuccess` and `ajaxError` handler which does an ajax response processing at the global level. It responsible for showing success/failure messages across all ajax requests. Is there a equivalent for this in AngularJS? I've gone through the `$http` service, but haven't found any solutions.