JSONP与jQuery [英] jsonp with jquery

查看:112
本文介绍了JSONP与jQuery的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你能给阅读使用jQuery一个JSONP请求,一个很简单的例子吗?我只是无法得到它的工作。

Can you give a very simple example of reading a jsonp request with jquery? I just can't get it to work.

推荐答案

下面是工作的例子:

<html><head><title>Twitter 2.0</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head><body>
<div id='tweet-list'></div>
<script type="text/javascript">
$(document).ready(function() {
    var url =  "http://api.twitter.com/1/statuses/user_timeline/codinghorror.json";
    $.getJSON(url + "?callback=?", null, function(tweets) {
        for(i in tweets) {
            tweet = tweets[i];
            $("#tweet-list").append(tweet.text + "<hr />");
        }
    });
});
</script>
</body></html>

注意?回调=?在请求URL的末尾。这表明在的getJSON ,我们要使用JSONP功能。删除它和香草的JSON请求将被使用。这将失败归因于该同源策略

Notice the ?callback=? at the end of the requested URL. That indicates to the getJSON function that we want to use JSONP. Remove it and a vanilla JSON request will be used. Which will fail due to the same origin policy.

您可以找到JQuery的网站的详细信息和示例: http://api.jquery.com/jQuery.getJSON/

You can find more information and examples on the JQuery site: http://api.jquery.com/jQuery.getJSON/

这篇关于JSONP与jQuery的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆