使用 jQuery 和 JSONP 从不同服务器上的文本文件检索数据
你好,我正在尝试做一些非常简单的事情,但由于我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的 JSONP 格式不正确。该文件包含 JSON 数据,而不是 JSONP 数据。您收到的错误消息是因为浏览器正在尝试将对象作为代码运行。您需要在 JSON 数据周围放置一个函数调用:
由于文本文件无法使用带有发送给它的函数名称的查询字符串,因此您必须使用 jsonpCallback 指定函数名称属性代替:
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:
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:这应该有效:
This should work: