将 url 传递给 getJSON
如果我在本地使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这违反了同源政策。
此规则的例外是使用 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.