<%= @posts.each do |post| %>
<div class="post_wrapper">
<h2 class="title"><%= link_to post.title, post %></h2>
<p class="date"><%= post.created_at.strftime("%B, %d, %Y") %></p>
</div>
<% end %>
---
[#<Post id:2, title:"this is a title", body:"body container", created_at:"2015-11-17 13:51:06", updated_at:"2015-11-17 13:51:06">, #<Post id:1, title:"new title", body:"some words", created_at:"2015-11-17 13:42:31", updated_at:"2015-11-17 13:42:31">]
---
可是我的 index 文件中,没有语句跟页面中以#<>
形式列出数据内容的行为相关。我百思不得其解,搜索也不好搜,所以来请教一下