将 url 传递给 getJSON

发布于 2024-11-30 02:00:10 字数 526 浏览 0 评论 0原文

如果我在本地使用 json 文件,getJSON 工作正常,但我不明白为什么不能从外部源获取它?

例如:

$.getJSON('http://ninsuna.elis.ugent.be/rdf/data/tennis/Roland_Garros-25.05.2009-RogerFederer-RobinSoderling-set1-game1?output=json', 
function(data) {
  $('.result').html(data);
  alert('Loaded.');
});

link 输出干净的 json 文件,但该方法无法加载它,在 Firebug 中响应字段为空(与我切换到本地 .json 时不同) 文件)。

getJSON works ok if I use json file locally, but I don't understand why can't I obtain it from external source?

For example:

$.getJSON('http://ninsuna.elis.ugent.be/rdf/data/tennis/Roland_Garros-25.05.2009-RogerFederer-RobinSoderling-set1-game1?output=json', 
function(data) {
  $('.result').html(data);
  alert('Loaded.');
});

The link outputs clean json file, but the method can't load it, in Firebug the response field is empty (unlike when I switch to local .json file).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

肤浅与狂妄 2024-12-07 02:00:10

这违反了同源政策

此规则的例外是使用 JSONP,但远程服务器需要支持略有不同的响应格式。

This violates the Same Origin Policy.

The exception to this rule is to use JSONP however the remote server needs to support the slightly different response format.

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