作者热门文章
- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我需要在 simple_fields_for block 内进行迭代,以将数字 [0 到 6] 分配给 :day 字段。
Controller
7.times { @doctor.schedules.build }
查看
<tr>
<% @i = 0 %>
<%= f.simple_fields_for :schedules do |builder| %>
<td>
<%= builder.input :day, value: @y, wrapper: :check %>
<%= builder.input :is_available, as: :boolean, label: false, wrapper: :check %>
<% @i += 1 %>
</td>
<% end %>
</tr>
显然这将从 1 开始到 7,我怎样才能让它从 0 迭代到 6?
最佳答案
仅供引用,您将能够在 Rails 4 中获取当前索引。参见 this合并拉取请求
现在你可以使用这样的东西:
<% @doctor.schedules.each_with_index do |schedule, index| %>
<%= f.simple_fields_for :schedules, schedule do |ff| %>
<%= ff.input :day, value: index %>
<% end %>
<% end %>
关于ruby - 如何在 simple_fields_for 中迭代?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14468415/
我是一名优秀的程序员,十分优秀!