将 .ajax() 与 JSONP 结合使用的基本示例?
请问有人可以帮我弄清楚如何开始使用 JSONP 吗?
代码:
$('document').ready(function() {
var pm_url = 'http://twitter.com/status';
pm_url += '/user_timeline/stephenfry.json';
pm_url += '?count=10&callback=photos';
var photos = function (data) {
alert(data);
};
$.ajax({
url: pm_url,
dataType: 'jsonp',
jsonpCallback: 'photos',
jsonp: false,
});
});
Fiddle: http://jsfiddle.net/R7EPt/6/
应该产生一个警报,只要我能工作从文档中得出:不是(但也不会产生任何错误)。
谢谢。
Please could someone help me work out how to get started with JSONP?
Code:
$('document').ready(function() {
var pm_url = 'http://twitter.com/status';
pm_url += '/user_timeline/stephenfry.json';
pm_url += '?count=10&callback=photos';
var photos = function (data) {
alert(data);
};
$.ajax({
url: pm_url,
dataType: 'jsonp',
jsonpCallback: 'photos',
jsonp: false,
});
});
Fiddle: http://jsfiddle.net/R7EPt/6/
Should produce an alert, as far as I can work out from the documentation: isn't (but isn't producing any errors either).
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
JSONP 实际上是克服 XMLHttpRequest 相同域策略的简单技巧。 (如您所知,无法将 AJAX (XMLHttpRequest) 请求发送到不同的域。)
因此,我们必须使用 脚本,而不是使用 XMLHttpRequest HTMLl 标签,通常用于加载 JS 文件,以便 JS 从另一个域获取数据。听起来很奇怪?
事实是 - 事实证明 script 标签可以以类似于 XMLHttpRequest 的方式使用!检查一下:
加载数据后,您将得到一个如下所示的 script 段:
但这有点不方便,因为我们必须从 script 中获取此数组强>标签。所以 JSONP 创建者决定这会工作得更好(而且确实如此):
注意到那里的 my_callback 函数了吗?因此,当 JSONP 服务器收到您的请求并找到回调参数时,它不会返回纯 JS 数组,而是返回以下内容:
查看利润在哪里:现在我们得到自动回调 (my_callback)一旦我们获得数据就会被触发。
这就是关于 JSONP 的全部信息:它是回调和脚本标记。
注意:
这些是 JSONP 使用的简单示例,不是生产就绪的脚本。
RAW JavaScript 演示(使用 JSONP 的简单 Twitter feed):
基本 jQuery 示例(使用 JSONP 的简单 Twitter feed):
JSONP 代表带填充的 JSON。 (技术的命名非常糟糕,因为它实际上与大多数人认为的“填充”无关。)
JSONP is really a simply trick to overcome XMLHttpRequest same domain policy. (As you know one cannot send AJAX (XMLHttpRequest) request to a different domain.)
So - instead of using XMLHttpRequest we have to use script HTMLl tags, the ones you usually use to load JS files, in order for JS to get data from another domain. Sounds weird?
Thing is - turns out script tags can be used in a fashion similar to XMLHttpRequest! Check this out:
You will end up with a script segment that looks like this after it loads the data:
However this is a bit inconvenient, because we have to fetch this array from script tag. So JSONP creators decided that this will work better (and it is):
Notice my_callback function over there? So - when JSONP server receives your request and finds callback parameter - instead of returning plain JS array it'll return this:
See where the profit is: now we get automatic callback (my_callback) that'll be triggered once we get the data.
That's all there is to know about JSONP: it's a callback and script tags.
NOTE:
These are simple examples of JSONP usage, these are not production ready scripts.
RAW JavaScript demonstration (simple Twitter feed using JSONP):
Basic jQuery example (simple Twitter feed using JSONP):
JSONP stands for JSON with Padding. (very poorly named technique as it really has nothing to do with what most people would think of as “padding”.)
还有更简单的方法如何使用 jQuery 处理 JSONP
URL 末尾的
?
告诉 jQuery 这是一个 JSONP 请求而不是 JSON。 jQuery 自动注册并调用回调函数。有关更多详细信息,请参阅 jQuery.getJSON 文档。
There is even easier way how to work with JSONP using jQuery
The
?
on the end of the URL tells jQuery that it is a JSONP request instead of JSON. jQuery registers and calls the callback function automatically.For more detail refer to the jQuery.getJSON documentation.
作为对OP的回应,您的代码有两个问题:您需要设置 jsonp='callback',并且像您一样在变量中添加回调函数似乎不起作用。
更新:当我写这篇文章时,Twitter API 刚刚开放,但他们更改了它,现在需要身份验证。我将第二个示例更改为工作(2014Q1)示例,但现在使用 github。
这不再起作用 - 作为练习,看看是否可以用 Github API 替换它:
虽然像这样的数组的alert()并不能很好地工作... Firebug 中的“Net”选项卡将向您显示JSON 正确。另一个方便的技巧是
您还可以使用 jQuery.getJSON 方法。这是一个完整的 html 示例,它从 github 获取“要点”列表。这样它就会为你创建一个随机命名的回调函数,这就是最终的“callback=?”在网址中。
In response to the OP, there are two problems with your code: you need to set jsonp='callback', and adding in a callback function in a variable like you did does not seem to work.
Update: when I wrote this the Twitter API was just open, but they changed it and it now requires authentication. I changed the second example to a working (2014Q1) example, but now using github.
This does not work any more - as an exercise, see if you can replace it with the Github API:
although alert()ing an array like that does not really work well... The "Net" tab in Firebug will show you the JSON properly. Another handy trick is doing
You can also use the jQuery.getJSON method. Here's a complete html example that gets a list of "gists" from github. This way it creates a randomly named callback function for you, that's the final "callback=?" in the url.
上面的代码有助于从 Flicker API 获取图像。这使用 GET 方法通过 JSONP 获取图像。可以在此处找到详细信息
The above code helps in getting images from the Flicker API. This uses the GET method for getting images using JSONP. It can be found in detail in here