0

当我尝试运行以下方法时,我正在使用的 gem 'twitter' 为我提供了以下结果:

def timeline
    @mytimeline = Twitter.user_timeline("cnn")
    newstring = @mytimeline.to_s
    puts newstring
  end

#<Twitter::Tweet:0x00000001647390>                                                                                                                                                                                                             
#<Twitter::Tweet:0x00000001647368>                                                                                                                                                                                                             
#<Twitter::Tweet:0x00000001647340> 
...

我正在尝试通过哈希符号访问结果。

当我转换 .to_s 时,我可以获得整个哈希的大量转储,但在一个字符串中......

我可以访问符号的最简单方法是什么?这是我得到的结果:

[#<Twitter::Tweet:0x0000000210ba88 
@attrs={
:created_at=>"Thu Sep 19 17:01:56 +0000 2013", 
:id=>380738540914479104, 
:id_str=>"380738540914479104", 
:text=>"What if you could buy a smartphone that would last you for the rest of your life? http://t.co/3j5N9gz18H", 
:source=>"web", 
:truncated=>false, 
:in_reply_to_status_id=>nil, 
:in_reply_to_status_id_str=>nil,
...
}
4

1 回答 1

0

您正在处理一系列Tweet

您可以通过遍历Array来访问每个Tweet中的某个符号:

@mytimeline.each { |tweet| print tweet[:text] }
于 2013-09-19T17:59:21.083 回答