0

我正在使用来自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"
    });
  });

4

1 回答 1

0

这个 jsFiddle 看起来像你想要的——我做对了吗?

jQuery(function($){
  $(".tweet").tweet({
    username: "fearofmobs",
    join_text: "auto",
    count: 20,
    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...",
    fetch: 20,
    filter: function(t){ return ! /^@\w+/.test(t.tweet_raw_text); }
  });
});
于 2012-07-08T15:40:39.763 回答