我有这样的输出:
#<Hashie::Mash created_time="1366008641"
from=#<Hashie::Mash full_name="Cor Valen" id="22340" username="_corin">
id="4344344286" text="Look Who It Is, My Brother, My Favorite Deputy">
如果我这样做,这是一个输出:
<%= media.caption %>
我想得到这个text
部分,我这样做了:
<%= media.caption.text %>
gets me error: undefined method `text' for nil:NilClass
<%= media.caption[:text] %>
gets me error: undefined method `[]' for nil:NilClass
我不明白?
谢谢