通过 jquery 的 getJSON 解析 json for twitter api 搜索结果不起作用
问题:对于给定的查询,我尝试从 twitter api 结果解析 json。
Problem : for a given query i try to parse the json from the twitter api results.
Codes at : http://jsfiddle.net/Nstnx/176/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(3)
微暖i2024-12-07 09:43:19
我在这方面落后了,cwallenpoole 应该因为速度快得多而获得任何荣誉,但这里有一个工作演示 -
森林很绿却致人迷途2024-12-07 09:43:19
试试这个
var url = "http://search.twitter.com/search.json?callback=?&rpp=50&q='ramlila'";
$.getJSON(url, function(data) {
var items = [];
var twitterList = $( "<ul />" );
$.each( data.results, function( index, item ) {
alert(data.results[index].text);
$( "<li />", { "text" : item.from_user} )
.appendTo( twitterList );
});
$( "#output" ).fadeOut( "fast", function(){
$( this ).empty()
.append( twitterList )
.fadeIn( "slow" );
});
});
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
data 参数有一个
results
属性。您想要迭代它而不是直接遍历数据:这
应该是
The data parameter has a
results
property. You want to iterate over that instead of over the data directly:This
Should be