Ajax请求子域
有没有办法从 http://foobar.com 获取ajax请求以从诸如 http://sub1.foobar.com/choco.php ?
似乎仍然不允许通过 javascript 进行子域请求
Is there a way to get ajax requests from http://foobar.com to snatch data from pages such as http://sub1.foobar.com/choco.php ?
It seems subdomain requests are still not allowed via javascript
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果数据不敏感,您可以使用 JSONP (JSON with Padding) 作为替代方案。
http://en.wikipedia.org/wiki/JSON#JSONP
If the data is not sensitive, you may use JSONP (JSON with Padding) as an alternative.
http://en.wikipedia.org/wiki/JSON#JSONP
JSONP(如 Andrew 提到)或代理脚本。
JSONP (as Andrew mentioned) or a Proxy Script.
您可以使用
Access-Control-Allow-Origin
标头进行现代浏览器,并将请求包装在古董浏览器的本地域上。You may use the
Access-Control-Allow-Origin
header for modern browsers, and wrap the request on the local domain for antique browsers.