jsonp with jquery(带有 jquery 的 jsonp)
问题描述
你能举一个用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="aHR0cDovL2FqYXguZ29vZ2xlYXBpcy5jb20vYWpheC9saWJzL2pxdWVyeS8xLjQuMi9qcXVlcnkubWluLmpz"></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 末尾的 ?callback=?
.这向 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/
这篇关于带有 jquery 的 jsonp的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:带有 jquery 的 jsonp


- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01