如何设置 jTweetsAnywhere 推文过滤器

发布于 2024-11-28 23:48:57 字数 533 浏览 1 评论 0原文

我正在使用 jTweetsAnywhere (http://thomasbillenstein.com/jTweetsAnywhere/#jta_usage) 并且需要过滤推文以排除某些带有文字的推文。我有这个,但它不起作用,并且没有如何设置它的示例。

 $('#Tweets').jTweetsAnywhere({
            searchParams: ['q=sliderobes'],
            TweetFilter: ['kids'],
            count: 3,
            showTweetFeed: {
                showProfileImages: true,
                showUserScreenNames: false
            }
        })

感谢您的帮助, C

I am using jTweetsAnywhere (http://thomasbillenstein.com/jTweetsAnywhere/#jta_usage) and need to filter the tweets to exclude certain tweets with words. I have this but it isn't working and there is no examples of how to set this up.

 $('#Tweets').jTweetsAnywhere({
            searchParams: ['q=sliderobes'],
            TweetFilter: ['kids'],
            count: 3,
            showTweetFeed: {
                showProfileImages: true,
                showUserScreenNames: false
            }
        })

Thanks for any help,
C

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自由如风 2024-12-05 23:48:57

它是小写的 t tweetFilter,它是一个接受 tweet(直接来自 Twitter API 的 JSON tweet 对象)和插件 options 的函数选项对象。例如

tweetFilter : function(tweet, options) {
    if (tweet && tweet.text) {
        var text = tweet.text;

        // Reject tweets that mention 'Kids'
        if (text.match(/kids/i)) {
            return false;
        }

        // Passed all filters
        return true;
    }
    // else no object or text - reject
    return false;
}

It's lower-case t tweetFilter and it's a function that accepts tweet - a JSON tweet object straight from the twitter API - and options, the plugin options object. For example

tweetFilter : function(tweet, options) {
    if (tweet && tweet.text) {
        var text = tweet.text;

        // Reject tweets that mention 'Kids'
        if (text.match(/kids/i)) {
            return false;
        }

        // Passed all filters
        return true;
    }
    // else no object or text - reject
    return false;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文