我使用angular 1.1.5和我使用$资源做一个XHR的REST服务,但似乎$资源不附加头作为X请求作为XMLHttpRequest,是一个正常行为?和我需要手动附加标题吗?
function loginCtrl($scope,$resource) { $scope.submit = function () { var resource = $resource('/Api/User/login',{},{ authenticate: { method: 'POST',isArray: false,headers: { '__RequestVerificationToken': $scope.loginRequest.Token } } }); resource.authenticate($scope.loginRequest); }; }
只需将它添加到您的应用程序
原文链接:https://www.f2er.com/angularjs/146349.htmlmyAppModule.config(['$httpProvider',function($httpProvider) { $httpProvider.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; }]);