Javascript 中进行跨域请求的 3 种方法
我已经知道两种方法(使用 php 代理并包含外部 javascript 文件)。还有什么办法呢?
I already know 2 ways (proxy using php and including an external javascript file). What is another way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Access-Control-Allow-Origin: *
在来自其他域上的服务器的标头中。
然而,这依赖于现代浏览器。不适用于 8 之前版本的 IE。
请参阅 https://developer.mozilla.org/En/HTTP_access_control< /a>
You can use Access-Control-Allow-Origin: *
in the headers coming from the server on the other domain.
That relies on the browser being modern, however. Won't work on IE older than 8.
See https://developer.mozilla.org/En/HTTP_access_control
还有与常规 XHR 相结合的跨文档消息传递。
可以在 easyXDM 示例页面上看到这样的示例:http://consumer.easyxdm.net/current/example/xhr.html
There is also Cross-Document Messaging combined with regular XHR.
An example of this can be seen on the easyXDM example page : http://consumer.easyxdm.net/current/example/xhr.html