0

Twitter gem 无法在推文中呈现链接。如何呈现 Twitter 链接以供查看?例如链接到@user 或链接到#tag

看法:

<% @tweet_news.each do |tweet| %>
      <li><em><%= l tweet.created_at %></em>
        <p><%= raw linkify(tweet.text) %></p>            
      <li>
  <% end %>

控制器:

def news
account = Settings['twitter'][Locale.get.to_s]

Twitter.configure do |config|
  config.consumer_key = account['consumer_key']
  config.consumer_secret = account['consumer_secret']
  config.oauth_token = account['oauth_token']
  config.oauth_token_secret = account['oauth_token_secret']
end

@twitter_user = account['name']

@tweet_news = Twitter.user_timeline(@twitter_user, {count: 3})

render 'blocks/news', layout: false 
4

1 回答 1

1

要获得漂亮的 twitter 主题标签和提及,请尝试使用 twitter-text gem,而不是 linkify。

添加到您的 Gemfile

gem 'twitter-text'

然后添加到您的application_helper.rb

module ApplicationHelper
  include Twitter::Autolink
  # Whatever else you have going on in your helper
end

那么在你看来

<% @tweet_news.each do |tweet| %>
  <li><em><%= l tweet.created_at %></em>
    <p><%= auto_link(tweet.text) %></p>            
  <li>
<% end %>
于 2013-08-27T16:28:25.130 回答