Jquery getJSON 无法跨站点工作

发布于 2024-09-05 18:55:28 字数 704 浏览 3 评论 0原文

我有一段 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 技术交流群。

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

发布评论

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

评论(1

铁憨憨 2024-09-12 18:55:29

来自 文档

  • 由于浏览器安全限制,大多数“Ajax”请求都受到同源策略的约束; 请求无法成功检索来自不同域、子域或协议的数据。

  • 脚本和 JSONP 请求不受同源策略限制。

您将需要使用 JSONP 来绕过同源策略。 jQuery 可以实现这一点无缝(请参阅上述文档页面的其余部分)。

From the documentation:

  • Due to browser security restrictions, most "Ajax" requests are subject to the same origin policy; the request can not successfully retrieve data from a different domain, subdomain, or protocol.

  • Script and JSONP requests are not subject to the same origin policy restrictions.

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).

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