网页抓取同源策略问题阻止访问
尝试编写一个对 google 的 JSON 股票报价 API 的简单调用。我想获取 JSON,但是出现了同源策略。关于如何解决这个问题有什么想法吗?我听说过使用 iFrame,但希望有更简单或更优雅的东西。
这是我的呼吁:
$('#ticker').change(function() {
url = "http://www.google.com/finance/info?client=ig&q=" + this.value;
$.getJSON(url, function(data) {
alert(data);
});
});
非常感谢任何帮助!
Trying to write a simple call to google's JSON stock ticker API. I would like to get JSON, however, the same origin policy comes up. Any ideas of how to work around this? I've heard of using an iFrame, but was hoping for something simpler or more elegant.
Here is my call:
$('#ticker').change(function() {
url = "http://www.google.com/finance/info?client=ig&q=" + this.value;
$.getJSON(url, function(data) {
alert(data);
});
});
Any help is much appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在提供页面之前将数据放入页面中。进行服务器到服务器的 XMLHTTP 调用。或者还有 JSONP:
http://api.jquery.com/jQuery.getJSON/
Put the data in your page before you serve it up. Make a server-to-server XMLHTTP call. Alternately there is JSONP:
http://api.jquery.com/jQuery.getJSON/