Jquery getJSON 无法跨站点工作
我有一段 javascript 可以抓取 JSON 数据。当在本地执行时,一切似乎都工作正常。但是,当我尝试从其他站点访问它时,它不起作用。
这是脚本。
$(function(){
var aT = new AjaxTest();
aT.getJson();
});
var AjaxTest = function()
{
this.ajaxUrl = "http://mydeveloperpage.com/sandbox/ajax_json_test/client_reciever.php";
this.getJson = function(){
$.getJSON(this.ajaxUrl, function(data){
$.each(data, function(i, piece){
alert(piece);
});
});
}
}
您可以在“http://mydeveloperpage.com/sandbox/ajax_json_test/< 找到完全相同文件的副本/a>”。
任何帮助将不胜感激。
谢谢!
I have a piece of javascript that grabs JSON data. When executed locally everything seems to work fine. However, when I try accessing it from a different site, it doesn't work.
Here's the script.
$(function(){
var aT = new AjaxTest();
aT.getJson();
});
var AjaxTest = function()
{
this.ajaxUrl = "http://mydeveloperpage.com/sandbox/ajax_json_test/client_reciever.php";
this.getJson = function(){
$.getJSON(this.ajaxUrl, function(data){
$.each(data, function(i, piece){
alert(piece);
});
});
}
}
You can find a copy of the exact same file at "http://mydeveloperpage.com/sandbox/ajax_json_test/".
Any help would be greatly appreciated.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 文档:
您将需要使用 JSONP 来绕过同源策略。 jQuery 可以实现这一点无缝(请参阅上述文档页面的其余部分)。
From the documentation:
You're going to need to use JSONP to get past the same-origin policy. jQuery can make this seamless (see the rest of the aforementioned documentation page).