我是angularJS的新手,我使用$ resource访问RestAPI。是否可以使用angularJS中的JSONP在$ resource中进行身份验证?
答案 0 :(得分:2)
是的,这是可能的。
您应该配置httpRequests的标头以包含withCredentials
一个。
可以这样做:
var myApp = angular.module('myApp', []);
myApp.config(['$httpProvider', function($httpProvider) {
// Default with credential to all methods
$httpProvider.defaults.withCredentials = true;
}]);
有关标题的更多信息,请参阅docs。