is there a way to tell if a request is an Angular (1.1.5) $resource request. I'm pretty much looking for a "Request.IsAjaxRequest()" method for this type of request.
I'm looking this as in the HandleUnauthorizedRequest of an overriden AuthorizeAttribute I need to set the context result to some json if an Ajax or angular request or something else if not.
I don't know well MVC3 but you can set a custom header for all request from AngularJS.
Then on server side you just have to get this header and do what you want with request from angular.
To have custom header in AngularJS just do this :
angular.module('myModule', [])
.config(['$httpProvider', function($httpProvider) {
$httpProvider.defaults.headers.common["FROM-ANGULAR"] = "true";
}])
For use the X-Requested-With you have to do this too :
$httpProvider.defaults.headers.common["X-Requested-With"] = 'XMLHttpRequest';
It's not set by default anymore because a lot part of the community have to delete this header to enable CORS request
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With