我是 angularJS 的新手,我正在使用 $resource 来访问 RestAPI。angularJS 中的 JSONP 可以在 $resource 中进行身份验证吗?
问问题
608 次
1 回答
2
对的,这是可能的。
您应该配置 httpRequests 的标头以包含该标头withCredentials
。
可以这样做:
var myApp = angular.module('myApp', []);
myApp.config(['$httpProvider', function($httpProvider) {
// Default with credential to all methods
$httpProvider.defaults.withCredentials = true;
}]);
有关标题的更多信息,请参阅文档。
于 2013-11-05T19:32:04.773 回答