触发跨域 ajax 调用的最佳方法是什么?
在不编写自定义代理的情况下进行跨域ajax调用的最佳方法是什么,尝试使用flXHR并且它工作正常,但是在我们没有flash的浏览器中失败,我们可以使用纯javascript来做到这一点吗?
What is the best way to make cross domain ajax calls without writing custom proxy, tried using flXHR and it is working fine, but it fails in the browsers where we don't have flash, can we do it using pure javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JSONP 是触发跨域 ajax 调用的最佳方式。但不支持 POST 请求
JSONP is the best way to fire crossdomain ajax call. It doesn't support POST request though