我正在尝试添加基于各种主题的推特搜索时间线,例如搜索不同节日的所有最新推文。我找到了一个关于如何使用带有 Jquery 和 Ajax 的 twitter API 对不同推文进行一般搜索的教程,但是在我可以进一步前进之前,当我在浏览器中运行网页并尝试不同时,我没有得到任何结果显示搜索主题。该代码类似于教程,我仍在学习不同的 twitter API 来帮助我完成我的项目,但我认为我仍然感到困惑。请有人可以看看我的代码并告诉我我做错了什么。这是一个 JSFiddle 来演示我的问题:http: //jsfiddle.net/YSBtC/这是 javascript 代码的主要来源
$(document).ready(function(){
$('#search').click(function(){
$('#results').html('');
console.log($('#i').val());
var search_term = $('#i').val();
$.ajax({
type: 'GET',
dataType: 'jsonp',
url: 'http://search.twitter.com/search.json',
data:{q: search_term},
success: function(data){
$.each(data.results, function(index, tweet){
$tweets = $(".tweet").first().clone();
console.log(tweet);
$tweets.find('.img').attr('src', tweet.profile_image_url)
$tweets.find('.name').text(tweet.from_user_name);
$tweets.find('.handle').html(twttr.txt.autoLink("@"+tweet.from_user));
$tweets.find('.text').html(twttr.txt.autoLink(tweet.text));
$tweets.hide().appendTo('#results').delay(400).fadeIn();
});
}
});
});
});
我将衷心感谢您的帮助。