我在我的前端使用AngularJS v1.2.16.我创建了一个简单的服务:
app.provider('Site',function () { var apiServer = 'http://api.example.com'; this.$get = ['$resource',function ($resource) { var site = $resource(apiServer + '/sites/:action:id',{},{ query: { withCredentials: true },checkDomain: { method: 'POST',withCredentials: true,params: { action: 'checkDomain' } },save: { method: 'PUT',withCredentials: true } }); return site; }]; });
当我尝试获取控制器中的网站列表时:
app.controller('SitesCtrl',['$scope','Site',function ($scope,Site) { $scope.sites = Site.query(); }]);
Angular不会发送带有请求的cookie,我无法获取网站列表.
但是当我通过jQuery发送相同的请求时:
$.ajax({ type: 'GET',url: 'http://api.example.com/sites',xhrFields: { withCredentials: true },success: function (data) { console.log(data); } });
随请求发送的Cookie,我可以获取网站列表.
请告诉我,我的错误在哪里?
解决方法
由于$resource服务是$http的工厂,您是否尝试在应用配置中将$CreProvider的withCredentials默认值设置为true?
.config(function ($httpProvider) { $httpProvider.defaults.withCredentials = true; }
参考Angular docs,你的语法似乎对于withCredentials是正确的.