所以我正在尝试创建一个滚动的 twitter 提要。我按照本教程的说明进行操作。
它不能正常工作。开始加载然后变白。我注意到评论中的一些内容建议了如何纠正问题,我认为我正确实施了该问题,但它仍然无法正常工作。如果有人熟悉这一点,需要从原始代码中更改哪些代码才能使其正常工作?
我相信这与此有关:
// This replaces the <p>Loading...</p> with the tweets
insertLatestTweets: function (username) {
var limit = 5; // How many feeds do you want?
var url = 'http://api.twitter.com/1/statuses/user_timeline.json?screen_name= + username + '&count=' + limit + '&callback=?';
// Now ajax in the feeds from twitter.com
$.getJSON(url, function (data) {
// We'll start by creating a normal marquee-element for the tweets
var html = '<marquee behavior="scroll" scrollamount="1" direction="left">';
// Loop through all the tweets and create a link for each
for (var i in data) {
html += '<a href="http://twitter.com/' + username + '#status_' + data[i].id_str + '">' + data[i].text + ' <i>' + Twitter.daysAgo(data[i].created_at) + '</i></a>';
}
html += '</marquee>';