1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

fileds_for の使い方

Last updated at Posted at 2019-03-18

fields_forとは

  • 複数のモデルを扱う form を作りたい時に使用するもの

基本的な使い方

例えばpageモデルと pageモデルとhas_onecategoryモデルを同じformで扱いたいとするとこんな感じになる

<%= form_with model: @page do |f| %>
  <%= f.fields_for :category do |ff| %>
    <%= ff.text_field :name %>
  <% end %>
<% end %>

Controller

class PagesController < ApplicationController

  def new
    @page = Page.new
  end
end

Model

class Page < ApplicationRecord
  has_one :category
end

has_manyな場合

こちらもcategorycategoriesに変わっただけで、こんな感じでいける

<%= form_with model: @page do |f| %>
  <%= f.fields_for :categories do |ff| %>
    <%= ff.text_field :name %>
  <% end %>
<% end %>

Controller

class PagesController < ApplicationController

  def new
    @page = Page.new
  end
end

Model

class Page < ApplicationRecord
  has_many :categories
end

子の方に最初から複数のformを出したい時

この場合はちょっとcontrollerの方で先に子の方をbuildしてあげれば良い
これでfields_forのブロックの中が3回繰り返される

<%= form_with model: @page do |f| %>
  <%= f.fields_for :categories do |ff| %>
    <%= ff.text_field :name %>
  <% end %>
<% end %>

Controller

class PagesController < ApplicationController

  before_action :build_page, only: %i(new)
  before_action :build_categories, only: %i(new)

  def new
  end

  private
  
  def build_page
    @page = Page.new
  end

  def build_categories
    for i in 1..3 do
      @page.categories.build
    end
  end
end

Model

class Page < ApplicationRecord
  has_many :categories
end
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?