4

与えられた:

<%= f.fields_for :socials do |builder| %>
  <%= render :partial => "social_fields", :locals => { :f => builder} %>
<% end %>

_social_fields.html.erb カウンター内のカウンター/インデックスを取得するにはどうすればよいですか (最後の項目で何かを行うために)。social_fields_counter は、明示的に :collection をレンダリングに渡した場合にのみ生成されるようですが、これらは親に accept_nested_attributes_for :socials を持つネストされたオブジェクトです。

4

1 に答える 1

13

内部_social_fields.html.erb:

<%= f.options[:child_index] %>
于 2013-03-07T21:22:28.547 に答える