如何显示:twitter输出中的文本值

时间:2012-11-26 04:53:41

标签: ruby-on-rails twitter

所以在我的ArticlesController中我设置了这个......

@most_recent_tweets = Twitter.home_timeline(count:1)

和文章index.html.erb文件......

    <% @most_recent_tweets.each do |tweet| %>
        <%= tweet["attrs"] %>
    <% end %>

这很好用......我得到以下输出......

{:created_at=>"Mon Nov 26 04:45:31 +0000 2012", :id=>272924019395813376, :id_str=>"272924019395813376", :text=>"Episode 394: STI and Polymorphic Associations (pro) http://t.co/UrLLdY1n", :source=>".....etc}

所以这是我的问题..我只显示以下值:text?

我希望我的输出能够......

Episode 394: STI and Polymorphic Associations (pro) http://t.co/UrLLdY1n

我该怎么做? (谢谢你的时间)

1 个答案:

答案 0 :(得分:0)

得到它......推文[“文字”]

左右....

<% @most_recent_tweets.each do |tweet| %>
    <%= tweet["attrs"] %>
<% end %>

...变为

<% @most_recent_tweets.each do |tweet| %>
    <%= tweet["text"] %>
<% end %>