109

を行う方法 (または同様の機能を実行する方法) はありfields_for_with_indexますか?

例:

<% f.fields_for_with_index :questions do |builder, index| %>  
  <%= render 'some_form', :f => builder, :i => index %>
<% end %>

レンダリングされるそのパーシャルは、現在のインデックスがfields_forループ内にあることを知る必要があります。

4

9 に答える 9

162

Rails 内でソリューションが提供されているため、答えは非常に簡単です。パラメータを使用できますf.options。したがって、 render 内で_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] %>
于 2013-07-22T01:10:31.203 に答える
17

Rails 4+ の場合

<%= form_for @person do |person_form| %>
  <%= person_form.fields_for :projects do |project_fields| %>
    <%= project_fields.index %>
  <% end %>
<% end %>

Rails 3 サポート用のモンキー パッチ

Rails 3 で作業するf.indexには、プロジェクトのイニシャライザにモンキー パッチを追加して、この機能を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
于 2016-04-25T17:03:35.327 に答える
7

チェックアウトパーシャルのコレクションのレンダリング。テンプレートが配列を反復処理し、各要素のサブテンプレートをレンダリングする必要があるという要件がある場合。

<%= f.fields_for @parent.children do |children_form| %>
  <%= render :partial => 'children', :collection => @parent.children, 
      :locals => { :f => children_form } %>
<% end %>

これにより、「_children.erb」がレンダリングされ、ローカル変数「children」が表示用のテンプレートに渡されます。反復カウンターは、 form という名前のテンプレートで自動的に使用可能になりますpartial_name_counter。上記の例の場合、テンプレートは feed になりますchildren_counter

お役に立てれば。

于 2011-01-31T17:12:01.350 に答える
5

少なくとも-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 %>

私の場合 、レンダリングされた 3 番目のフィールドに対してg.object_nameこのような文字列を返すので、その文字列のインデックスを照合して使用します。"gallery_set[blog_posts_attributes][2]"


実際には、ラムダを渡してそれを呼び出してインクリメントするという、よりクールな (そしてよりクリーンな?) 方法があります。

# /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 %>
于 2013-10-02T16:10:58.163 に答える
0

インデックスを制御したい場合は、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"
    }
  }
}

マルチドロップダウンを機能させるには、インデックスオプションを使用する必要がありました。幸運を。

于 2016-12-16T16:56:37.903 に答える