いろいろ調べましたが、今のところ困っています。配列を単純化することを検討しているので、操作が少し簡単になります...
現在、私の配列は次のようになっています。
[[{"title"=>"Test Entry 2", "date"=>"2013-11-01 21:05"}, "\nThis is just another test entry."], [{"title"=>"Test Entry", "date"=>"2013-11-01 18:05"}, "\nThis is just a test entry."]]
そして、私が現在持っているこれらの値を印刷するには:
entries.each do |x|
puts x[0]["title"]
puts x[0]["date"]
puts x[1]
end
私はそれがこのように見えることを望みます(私は思う):
[{"title"=>"Test Entry 2", "date"=>"2013-11-01 21:05", "content"=>"\nThis is just another test entry".}], [{"title"=>"Test Entry", "date"=>"2013-11-01 18:05", "content"="\nThis is just a test entry.}]
次のようなループでこれらの値を簡単に呼び出せるようにしたいと考えています。
entries.each do |entry|
puts entry["title"]
puts entry["date"]
puts entry["content"]
end
どんな助けでも大歓迎です。見てくれてありがとう!!