使用 jQuery 和 JSONP 从不同服务器上的文本文件检索数据

发布于 2024-10-14 10:30:11 字数 535 浏览 3 评论 0原文

你好,我正在尝试做一些非常简单的事情,但由于我对 JSONP 还很陌生,所以我正在努力解决它。我想做的就是从不同域中的文本文件中检索一些 JSON(因此我需要使用 JSONP 来解决跨域问题)。我使用以下代码:

$.ajax({
        type: "GET",
        dataType: 'jsonp',
        url: "http://www.topshop.com/aboutus/show.txt",
        success: returnedMessage
});

function returnedMessage(data) {
    console.log(data.message);
}

我知道 JSONP 将 JSON 作为函数返回,但我不知道如何将生成的 json 对象打印到控制台。我很确定它可以完成,但正如我在 Firebug 的 NET 选项卡中看到的那样,它返回 JSON 作为响应。在 Firebug 控制台中,我收到一条无效标签消息,我认为这是因为我没有以正确的方式处理 JSONP 请求。谁能帮我解决这个问题吗?

Hi there i am trying to do something very simple, but as i am pretty new to JSONP i am struggling with it. All i want to do is retrieve some JSON from a text file in a different domain (hence my need to use JSONP to get round the cross domain issues). I am using the following code:

$.ajax({
        type: "GET",
        dataType: 'jsonp',
        url: "http://www.topshop.com/aboutus/show.txt",
        success: returnedMessage
});

function returnedMessage(data) {
    console.log(data.message);
}

I know JSONP returns the JSON as a function, but i don't know how to print the resulting json objects to the console. I am pretty sure it can be done though as i can see in the NET tab of Firebug that it is returning the JSON as a response. In the Firebug console i am getting an invalid label message, which i think is because i am not treating the JSONP request in the right way. Can anyone help me with this?

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

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

发布评论

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

评论(2

梦与时光遇 2024-10-21 10:30:11

您的 JSONP 格式不正确。该文件包含 JSON 数据,而不是 JSONP 数据。您收到的错误消息是因为浏览器正在尝试将对象作为代码运行。您需要在 JSON 数据周围放置一个函数调用:

callback({
  "message": "This is coming from staging."
});

由于文本文件无法使用带有发送给它的函数名称的查询字符串,因此您必须使用 jsonpCallback 指定函数名称属性代替:

$.ajax({
  type: "GET",
  dataType: 'jsonp',
  jsonpCallback: 'callback',
  url: "http://www.topshop.com/aboutus/show.txt",
  success: returnedMessage
});

Your JSONP format is not correct. The file contains JSON data, not JSONP data. The error message you get is because the browser is trying to run the object as code. You need to put a function call around the JSON data:

callback({
  "message": "This is coming from staging."
});

As the text file can't use the query string with the function name that is sent to it, you have to specify the function name using the jsonpCallback property instead:

$.ajax({
  type: "GET",
  dataType: 'jsonp',
  jsonpCallback: 'callback',
  url: "http://www.topshop.com/aboutus/show.txt",
  success: returnedMessage
});
最舍不得你 2024-10-21 10:30:11

这应该有效:

$.getJSON('http://www.topshop.com/aboutus/show.txt?callback=?', function(data) {
  console.log(data);
});

This should work:

$.getJSON('http://www.topshop.com/aboutus/show.txt?callback=?', function(data) {
  console.log(data);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文