当前位置:  开发笔记 > 编程语言 > 正文

Rails:在View中检查has_many

如何解决《Rails:在View中检查has_many》经验,为你挑选了1个好方法。

如果我有...

class Bunny < ActiveRecord::Base
  has_many :carrots
end

...如果@bunny有任何胡萝卜,我怎么办查看?我想做这样的事情:

<% if @bunny.carrots? %>
  Yay! Carrots!
  <% for carrot in @bunny.carrots %>
    You got a <%=h carrot.color %> carrot!
<% end %> <% end %>

我知道@bunny.carrots?不行 - 会怎么样?



1> James A. Ros..:
<% if @bunny.carrots.any? %>
  Yay! Carrots!
  <% for carrot in @bunny.carrots %>
    You got a <%=h carrot.color %> carrot!
<% end %> <% end %>

推荐阅读
N个小灰流_701
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有