跨域请求和JQuery
我尝试使用 $.getJSON() 通过 jquery 向 Web 服务发出跨域请求,它工作正常!但是,当我尝试在 Internet Explorer 7 或 8 中发出相同的请求时,该请求永远不会发送。有人有什么想法吗?
Im trying to make a cross domain request to a web service via jquery using $.getJSON() and it works fine! However, when I try to make the same request in Internet Explorer 7 or 8 the request is never sent. Anyone have any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JSONP 就是为了这个目的而出现的。检查 getJSON jQuery 文档 中的 JSONP 部分。
JSONP is here for this purpose. Check the JSONP section in getJSON jQuery documentation.
IE 明确阻止跨域请求。最好在您的服务器上使用跨域代理以获得更好的效果!
一些文档:http://ajaxpatterns.org/Cross-Domain_Proxy
IE explicitly blocks cross domain requests. Better to use a cross domain proxy on your server for better results!
Some documentation: http://ajaxpatterns.org/Cross-Domain_Proxy