我是TypeScript的新手,我正在尝试使用$ http服务设置跨域请求。过去,使用JavaScript可以实现以下功能:
$httpProvider.defaults.useXDomain = true;
$httpProvider.defaults.withCredentials = true;
当我查看使用AngularJS所需的DefinitivelyTyped类的IRequestConfig options时,我看到有一个withCredentials属性,但没有useXDomain属性。
还有另一种方法吗?
最佳答案
我认为这样做是不可能的,这似乎是个坏消息。但是我有个好消息。您不需要这样做,因为将useXDomain
设置为true
无效。实际上,useXDomain
在Angular中是not even really a thing。
Here是有关CORS的出色教程,以获取更多信息。