加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ruby-on-rails – 迭代活动记录结果 – ruby?? on rails

发布时间:2020-12-16 19:30:21 所属栏目:百科 来源:网络整理
导读:我一直在努力找到这个答案,也许这太简单了…… 在rails中,迭代activerecord结果的最佳方法是如何拉出你想要的特定字段? 我有一个评论控制器(命名帖子),可以提取所有记录: def index@posts = Post.find(:all)end 然后在索引视图中,当我使用%= @posts%我得
我一直在努力找到这个答案,也许这太简单了……

在rails中,迭代activerecord结果的最佳方法是如何拉出你想要的特定字段?

我有一个评论控制器(命名帖子),可以提取所有记录:

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,comments: "here's a second comment",twitter: "please",created_at: "2012-05-09 05:20:03",updated_at: "2012-05-09 05:20:03">

我现在如何迭代测试,以便视图显示来自comments和created_at字段的数据:

这是第一条评论,2012-05-09 04:21:16

这是第二条评论,2012-05-09 05:20:03

我尝试了以下内容并收到错误消息.

<% @posts.each do |c| %>
   <%= c.posts.comments %>
   <%= c.posts.created_at %>
<% end %>

解决方法

@ posts.each中的“c”执行| c |表示@posts集合中的特定post对象.

所以,从某种意义上说,你正试图做<%= post.posts.comments%>.

以下是代码的外观:

<% @posts.each do |p| %>
   <%= p.comments %>
   <%= p.created_at %>
<% end %>

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读