网页抓取同源策略问题阻止访问

发布于 2024-10-19 04:22:16 字数 360 浏览 4 评论 0原文

尝试编写一个对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自由如风 2024-10-26 04:22:16

在提供页面之前将数据放入页面中。进行服务器到服务器的 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文