fields_for_with_index
を実行する方法(または同様の機能を実行する方法)はありますか?
例:
<% f.fields_for_with_index :questions do |builder, index| %>
<%= render 'some_form', :f => builder, :i => index %>
<% end %>
レンダリングされるパーシャルは、現在のインデックスがfields_for
ループにあるものを知る必要があります。
これは、実際にはRailsドキュメンテーションをより厳密に以下に示した、より良いアプローチです。
<% @questions.each.with_index do |question,index| %>
<% f.fields_for :questions, question do |fq| %>
# here you have both the 'question' object and the current 'index'
<% end %>
<% end %>
From: http://railsapi.com/doc/Rails-v3.0.4/classes/ActionView/Helpers/FormHelper.html#M006456
使用するインスタンスを指定することもできます。
<%= form_for @person do |person_form| %>
...
<% @person.projects.each do |project| %>
<% if project.active? %>
<%= person_form.fields_for :projects, project do |project_fields| %>
Name: <%= project_fields.text_field :name %>
<% end %>
<% end %>
<% end %>
<% end %>
ソリューションはRails内で提供されるため、答えは非常に簡単です。 f.options
paramsを使用できます。したがって、レンダリングされた_some_form.html.erb
内で、
インデックスには次の方法でアクセスできます
<%= f.options[:child_index] %>
他に何もする必要はありません。
更新:私の答えは十分に明確ではなかったようです...
元のHTMLファイル:
<!-- Main ERB File -->
<% f.fields_for :questions do |builder| %>
<%= render 'some_form', :f => builder %>
<% end %>
レンダリングされたサブフォーム:
<!-- _some_form.html.erb -->
<%= f.options[:child_index] %>
Rails 4.0.2では、FormBuilderオブジェクトにインデックスが含まれるようになりました。
http://apidock.com/Rails/v4.0.2/ActionView/Helpers/FormHelper/fields_for
例えば:
<%= form_for @person do |person_form| %>
...
<%= person_form.fields_for :projects do |project_fields| %>
Project #<%= project_fields.index %>
...
<% end %>
...
<% end %>
Rails 4+の場合
<%= form_for @person do |person_form| %>
<%= person_form.fields_for :projects do |project_fields| %>
<%= project_fields.index %>
<% end %>
<% end %>
Rails 3サポート用のモンキーパッチ
f.index
をRails 3で動作させるには、モンキーパッチをプロジェクト初期化子に追加して、この機能をfields_for
に追加する必要があります
# config/initializers/fields_for_index_patch.rb
module ActionView
module Helpers
class FormBuilder
def index
@options[:index] || @options[:child_index]
end
def fields_for(record_name, record_object = nil, fields_options = {}, &block)
fields_options, record_object = record_object, nil if record_object.is_a?(Hash) && record_object.extractable_options?
fields_options[:builder] ||= options[:builder]
fields_options[:parent_builder] = self
fields_options[:namespace] = options[:namespace]
case record_name
when String, Symbol
if nested_attributes_association?(record_name)
return fields_for_with_nested_attributes(record_name, record_object, fields_options, block)
end
else
record_object = record_name.is_a?(Array) ? record_name.last : record_name
record_name = ActiveModel::Naming.param_key(record_object)
end
index = if options.has_key?(:index)
options[:index]
elsif defined?(@auto_index)
self.object_name = @object_name.to_s.sub(/\[\]$/,"")
@auto_index
end
record_name = index ? "#{object_name}[#{index}][#{record_name}]" : "#{object_name}[#{record_name}]"
fields_options[:child_index] = index
@template.fields_for(record_name, record_object, fields_options, &block)
end
def fields_for_with_nested_attributes(association_name, association, options, block)
name = "#{object_name}[#{association_name}_attributes]"
association = convert_to_model(association)
if association.respond_to?(:persisted?)
association = [association] if @object.send(association_name).is_a?(Array)
elsif !association.respond_to?(:to_ary)
association = @object.send(association_name)
end
if association.respond_to?(:to_ary)
explicit_child_index = options[:child_index]
output = ActiveSupport::SafeBuffer.new
association.each do |child|
options[:child_index] = nested_child_index(name) unless explicit_child_index
output << fields_for_nested_model("#{name}[#{options[:child_index]}]", child, options, block)
end
output
elsif association
fields_for_nested_model(name, association, options, block)
end
end
end
end
end
チェックアウト パーシャルのコレクションのレンダリング 。テンプレートが配列を反復処理し、各要素のサブテンプレートをレンダリングする必要があるという要件がある場合。
<%= f.fields_for @parent.children do |children_form| %>
<%= render :partial => 'children', :collection => @parent.children,
:locals => { :f => children_form } %>
<% end %>
これにより、「_ children.erb」がレンダリングされ、ローカル変数「children」が表示用のテンプレートに渡されます。テンプレートでは、partial_name_counter
という形式の名前で反復カウンターが自動的に使用可能になります。上記の例の場合、テンプレートにはchildren_counter
が供給されます。
お役に立てれば。
少なくとも-v3.2.14以外では、Railsが提供する方法を介してこれを行う適切な方法がわかりません。
@Sheharyar Naseerは、問題を解決するために使用できるオプションハッシュへの参照を作成しますが、彼が提案する方法で見ることができる限りではありません。
私はこれをしました=>
<%= f.fields_for :blog_posts, {:index => 0} do |g| %>
<%= g.label :gallery_sets_id, "Position #{g.options[:index]}" %>
<%= g.select :gallery_sets_id, @posts.collect { |p| [p.title, p.id] } %>
<%# g.options[:index] += 1 %>
<% end %>
または
<%= f.fields_for :blog_posts do |g| %>
<%= g.label :gallery_sets_id, "Position #{g.object_name.match(/(\d+)]/)[1]}" %>
<%= g.select :gallery_sets_id, @posts.collect { |p| [p.title, p.id] } %>
<% end %>
私の場合 g.object_name
は、このような文字列を返します"gallery_set[blog_posts_attributes][2]"
レンダリングされた3番目のフィールドの場合、その文字列のインデックスと一致するだけで使用します。
実際には、それを行うためのよりクールな(そしておそらくよりクリーンな)方法は、ラムダを渡し、インクリメントするためにそれを呼び出すことです。
# /controller.rb
index = 0
@incrementer = -> { index += 1}
そして、ビューで
<%= f.fields_for :blog_posts do |g| %>
<%= g.label :gallery_sets_id, "Position #{@incrementer.call}" %>
<%= g.select :gallery_sets_id, @posts.collect { |p| [p.title, p.id] } %>
<% end %>
私はこれが少し遅いことを知っていますが、最近これをしなければならなかったので、このようなfields_forのインデックスを取得できます
<% f.fields_for :questions do |builder| %>
<%= render 'some_form', :f => builder, :i => builder.options[:child_index] %>
<% end %>
これが役立つことを願っています:)
インデックスを制御したい場合は、index
オプションをチェックアウトしてください
<%= f.fields_for :other_things_attributes, @thing.other_things.build do |ff| %>
<%= ff.select :days, ['Mon', 'Tues', 'Wed'], index: 2 %>
<%= ff.hidden_field :special_attribute, 24, index: "boi" %>
<%= end =>
これは生成します
<select name="thing[other_things_attributes][2][days]" id="thing_other_things_attributes_7_days">
<option value="Mon">Mon</option>
<option value="Tues">Tues</option>
<option value="Wed">Wed</option>
</select>
<input type="hidden" value="24" name="thing[other_things_attributes][boi][special_attribute]" id="thing_other_things_attributes_boi_special_attribute">
フォームが送信されると、paramsには次のようなものが含まれます。
{
"thing" => {
"other_things_attributes" => {
"2" => {
"days" => "Mon"
},
"boi" => {
"special_attribute" => "24"
}
}
}
マルチドロップダウンを機能させるには、インデックスオプションを使用する必要がありました。がんばろう。