具有基本认证和JSONP的angularJS $资源

时间:2013-11-05 19:26:47

标签: angularjs jsonp

我是angularJS的新手,我使用$ resource访问RestAPI。是否可以使用angularJS中的JSONP在$ resource中进行身份验证?

1 个答案:

答案 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