我在本地虚拟主机(
http://foo.app:8000)上运行一个角度应用程序。它使用$ http.post向另一个本地VirtualHost(
http://bar.app:8000)发出请求。
$http.post('http://bar.app:8000/mobile/reply',reply,{withCredentials: true});
在Chrome开发者工具的网络标签中,我当然看到OPTIONS请求,响应包括标题:
Access-Control-Allow-Origin: http://foo.app:8000
No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘07000’ is therefore not allowed access.
有没有人经历过这个? Access-Control-Allow-Origin头部非常明显地包含在OPTIONS请求的响应中,所以我不能为我的生活找出为什么POST正在作用的头部丢失。
Access-Control-Allow-Credentials也设置为true。
这是一个在本地开发的chrome的错误。尝试其他浏览器。然后它会工作。
原文链接:https://www.f2er.com/angularjs/146293.html