私はこのようなものを出力しました:
#<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
理解できません?
ありがとう