在 Rails 3.2 应用程序中,我使用简单表单来创建复杂表单。
form/model accepts_nested_attributes_for
,我需要获取子对象的索引。
型号:
class Project
has_many :tasks
accepts_nested_attributes_for :tasks
end
class Task
belongs_to :project
end
表格
<%= simple_form_for @project do |f| %>
<%= f.simple_fields_for :tasks do |builder| %>
## I need to get the index of each object built via builder
<% end %>
<% end %>
如何正确获取索引?