Rails在fields_for中构建fields_for一次

时间:2013-03-08 00:12:17

标签: ruby-on-rails nested-forms fields-for

在我的

<%= nested_form_for @object do |f| %>

我有一个像:

这样的嵌套形式
<%=f.fields_for :nested, :url => { :action => "new" } do |build| %>
   <%= render 'nested_fields', :f => build %>
<% end %>

在那个nested_field里面,我还有另一个fields_for:nested2

我的问题是:当嵌套被调用时,我希望nested2出现1次。 我尝试了嵌套控制器的新动作

@nested = Nested.new
@nested.nested2.build

但这只适用于“真正的”新动作。 这个问题有什么解决方案吗?

我正在使用“nested_form”gem。

1 个答案:

答案 0 :(得分:3)

fields_for允许您指定要为其呈现字段的特定对象,因此,如果您希望nested_fields部分包含单个新构建nested2模型的嵌套字段,则可以在fields_for调用本身中执行此操作,如下所示:

# '_nested_fields.html.erb'

...
<%= f.fields_for :nested2, f.object.build_nested2 do |build| %>
  <%= ... %>
<% end %>

这假设为Nested has_one :nested2,如果它是has_many关联,则fields_for参数会略有不同:

<%= f.fields_for :nested2s, f.object.nested2s.build do |build| %>

f.object允许您访问表单构建器的对象,然后您可以使用它的关联方法(基于关联类型)来构建新对象。