我正在使用来自http://tweet.seaofclouds.com/的脚本在网站上显示最新推文,代码示例 7 显示了我如何使用它来显示推文而不显示 @replies,我尝试了这个,但它没有不工作。当我这样做时,它不会显示任何内容。
另外,我怎样才能重新排序,以便在推文之后显示 tweet_time?
谢谢!
运行良好的代码,仅显示最新推文:
<script type='text/javascript'>
jQuery(function($){
$(".tweet").tweet({
username: "fearofmobs",
join_text: "auto",
count: 1,
auto_join_text_default: "",
auto_join_text_ed: "we",
auto_join_text_ing: "we were",
auto_join_text_reply: "we replied to",
auto_join_text_url: "we were checking out",
loading_text: "loading tweets..."
});
});
我想使用的代码应该省略@replies,但什么都不显示:
<script type='text/javascript'>
jQuery(function($){
$("#filter").tweet({
count: 1,
fetch: 20,
filter: function(t){ return ! /^@\w+/.test(t.tweet_raw_text); },
username: "fearofmobs"
});
});