我曾试图找到这一答案,可能过于简单。
在铁路方面,如何通过积极记录取得的结果,使你想要的具体领域得到振兴?
我有一位评论员(指定员额),负责记录所有记录:
def index
@posts = Post.find(:all)
end
然后,在指数方面,当我使用时;%= @posts %>我获得所有数据......是巨大的......。
#<Post id: 1, user_id: "9", picture: nil, comments: "here s a first comment", title: nil, twitter: nl, frame: nil, created_at: "2012-05-09 04:21:16", updated_at: "2012-05-09 04:21:16"> #<Post id: 2, user_id: "9", picture: nil, comments: "here s a second comment", title: nil, twitter: "please", frame: nil, created_at: "2012-05-09 05:20:03", updated_at: "2012-05-09 05:20:03">
我现在如何通过测试使这种观点能够显示评论中的数据,并创造:
The first comment, 2012-05-09 04:21:16
The second comment, 2012-05-09 05:20:03
我尝试了以下几个错误。
<% @posts.each do |c| %>
<%= c.posts.comments %>
<%= c.posts.created_at %>
<% end %>