0

jtweetsanywhereプラグインを使用した経験はありますか?ツイートのタイムスタンプのみを表示しようとしています。現時点では、リツイート者などのすべての属性も取得しています。これは、使用しているコードです。

$('#tweetFeed').jTweetsAnywhere({
                username: 'username',
                count: 1,
                showTweetFeed: {
                    showProfileImages: false,
                    showUserScreenNames: false,
                    showUserFullNames: false,
                    showActionReply: false,
                    showActionRetweet: false,
                    showActionFavorite: false,
                    showTwitterBird: false,
                    showTimestamp: {
                        refreshInterval: 15
                    }
                }
            })
4

1 に答える 1

0

これらは、jTweetsAnywhereを呼び出すときに設定できる構成オプション(およびそれらのデフォルト値)です。

showProfileImages: null
showUserScreenNames: null
showUserFullNames: false
showActionReply: false
showActionRetweet: false
showActionFavorite: false
showTwitterBird: true
showTimestamp: true
showSource: false
showGeoLocation: true
showInReplyTo: true

リツイート者を非表示にする場合はtweetRetweeterDecorator、構成オプションの内部を上書きする必要があります。

tweetRetweeterDecorator: function()
{
    return '';
}
于 2012-05-23T14:17:01.497 に答える