form_for(record_or_name_or_array, *args, &proc) public

Creates a form and a scope around a specific model object that is used as a base for questioning about values for the fields.

Rails provides succinct resource-oriented form generation with form_for like this:

  <% form_for @offer do |f| %>
    <%= f.label :version, 'Version' %>:
    <%= f.text_field :version %><br />
    <%= f.label :author, 'Author' %>:
    <%= f.text_field :author %><br />
  <% end %>

There, form_for is able to generate the rest of RESTful form parameters based on introspection on the record, but to understand what it does we need to dig first into the alternative generic usage it is based upon.

Generic form_for

The generic way to call form_for yields a form builder around a model:

  <% form_for :person, :url => { :action => "update" } do |f| %>
    <%= f.error_messages %>
    First name: <%= f.text_field :first_name %><br />
    Last name : <%= f.text_field :last_name %><br />
    Biography : <%= f.text_area :biography %><br />
    Admin?    : <%= f.check_box :admin %><br />
  <% end %>

There, the first argument is a symbol or string with the name of the object the form is about, and also the name of the instance variable the object is stored in.

The form builder acts as a regular form helper that somehow carries the model. Thus, the idea is that

  <%= f.text_field :first_name %>

gets expanded to

  <%= text_field :person, :first_name %>

If the instance variable is not @person you can pass the actual record as the second argument:

  <% form_for :person, person, :url => { :action => "update" } do |f| %>
    ...
  <% end %>

In that case you can think

  <%= f.text_field :first_name %>

gets expanded to

  <%= text_field :person, :first_name, :object => person %>

You can even display error messages of the wrapped model this way:

  <%= f.error_messages %>

In any of its variants, the rightmost argument to form_for is an optional hash of options:

  • :url - The URL the form is submitted to. It takes the same fields you pass to url_for or link_to. In particular you may pass here a named route directly as well. Defaults to the current action.
  • :html - Optional HTML attributes for the form tag.

Worth noting is that the form_for tag is called in a ERb evaluation block, not an ERb output block. So that’s <% %>, not <%= %>.

Also note that form_for doesn’t create an exclusive scope. It’s still possible to use both the stand-alone FormHelper methods and methods from FormTagHelper. For example:

  <% form_for :person, @person, :url => { :action => "update" } do |f| %>
    First name: <%= f.text_field :first_name %>
    Last name : <%= f.text_field :last_name %>
    Biography : <%= text_area :person, :biography %>
    Admin?    : <%= check_box_tag "person[admin]", @person.company.admin? %>
  <% end %>

This also works for the methods in FormOptionHelper and DateHelper that are designed to work with an object as base, like FormOptionHelper#collection_select and DateHelper#datetime_select.

Resource-oriented style

As we said above, in addition to manually configuring the form_for call, you can rely on automated resource identification, which will use the conventions and named routes of that approach. This is the preferred way to use form_for nowadays.

For example, if @post is an existing record you want to edit

  <% form_for @post do |f| %>
    ...
  <% end %>

is equivalent to something like:

  <% form_for :post, @post, :url => post_path(@post), :html => { :method => :put, :class => "edit_post", :id => "edit_post_45" } do |f| %>
    ...
  <% end %>

And for new records

  <% form_for(Post.new) do |f| %>
    ...
  <% end %>

expands to

  <% form_for :post, Post.new, :url => posts_path, :html => { :class => "new_post", :id => "new_post" } do |f| %>
    ...
  <% end %>

You can also overwrite the individual conventions, like this:

  <% form_for(@post, :url => super_post_path(@post)) do |f| %>
    ...
  <% end %>

And for namespaced routes, like admin_post_url:

  <% form_for([:admin, @post]) do |f| %>
   ...
  <% end %>

Customized form builders

You can also build forms using a customized FormBuilder class. Subclass FormBuilder and override or define some more helpers, then use your custom builder. For example, let’s say you made a helper to automatically add labels to form inputs.

  <% form_for :person, @person, :url => { :action => "update" }, :builder => LabellingFormBuilder do |f| %>
    <%= f.text_field :first_name %>
    <%= f.text_field :last_name %>
    <%= text_area :person, :biography %>
    <%= check_box_tag "person[admin]", @person.company.admin? %>
  <% end %>

In this case, if you use this:

  <%= render :partial => f %>

The rendered template is people/_labelling_form and the local variable referencing the form builder is called labelling_form.

The custom FormBuilder class is automatically merged with the options of a nested fields_for call, unless it’s explicitely set.

In many cases you will want to wrap the above in another helper, so you could do something like the following:

  def labelled_form_for(record_or_name_or_array, *args, &proc)
    options = args.extract_options!
    form_for(record_or_name_or_array, *(args << options.merge(:builder => LabellingFormBuilder)), &proc)
  end

If you don’t need to attach a form to a model instance, then check out FormTagHelper#form_tag.

Show source
Register or log in to add new notes.
July 22, 2008
15 thanks

Nested resources in form_for

If you like doing things RESTfully and have a model relationship like:

 Post_ has many Comments_

Then you can construct a form_for within your view to mirror this relationship when creating comments:

 form_for [@post, @comment] do |f|
   ...
 end

You also need to make sure your routes reflect this relationship:

 map.resources :post, :has_many => [:comments]
August 5, 2008
11 thanks

Multipart form

Don’t forget to add :multipart => true if you have file upload in your form.

 <% form_for "user", :html => { :multipart => true } do |f| %>
September 28, 2008 - (v2.0.0 - v2.1.0)
3 thanks

has_one Nesting in Rails 2.0

Routers:

  map.resources :user, :has_one => [:avatar]

Views:

  form_for [@user, @avatar], :url => user_avatar_url(@user) do |f|
  ...
  end
September 25, 2008 - (v2.1.0)
3 thanks

Compare old and new form for

Old form for

  <% form_for :user, :url => users_path do %>
    <%= render :partial => 'form' %>
    <%= submit_tag 'Create' %>
  <% end %>

New form for

  <% form_for(@user) do |f| %>
    <%= render :partial => f %>
    <%= submit_tag 'Create' %>
  <% end %>
January 27, 2009 - (>= v2.2.1)
2 thanks

Getting the object in a partial

If you need to get the object for the form inside a partial, and can’t use the instance variable, use the #object method… This is particularly useful when you’re dealing with single-table inheritance subclasses (e.g. MyOtherClass inherits from MyClass) or when you are using the same partial across different controllers.

new.html.erb

  <% form_for(@my_object) do %>
    <%= render :partial => 'form' %>
    <%= submit_tag 'Create' %>
  <% end %>

_form.html.erb

  <% if f.object.class.is_a? MyClass %>
   <%# do something... %>
  <% elsif f.object.is_a? MyOtherClass %>
    <%# do something else... %>
  <% end %>
November 2, 2008
2 thanks

params hash gets the model id automatically

The params hash gets automatically populated with the id of every model that gets passed to form_for. If we were creating a song inside an existing album:

  URL:/albums/209/songs/new
  form_for [@album, @song] do |f|
    ...
    f.submit "Add"
  end

The params hash would be:

  params = {"commit"=>"Add",
            "authenticity_token"=>"...",
            "album_id"=>"209",
            "song"=>{"song_attributes"=>{...}}
            }

So, in the songs_controller you could use this album_id in a before_filter:

  before_filter :find_album
  protected
  def find_album
    @album = Album.find(params[:album_id])
  end

If you only did this:

  form_for @song do |f|

You would get this params hash:

  params = {"commit"=>"Add",
            "authenticity_token"=>"...",
            "song"=>{"song_attributes"=>{...}}
            }
October 8, 2008
2 thanks

Seriously! Do not forget the brackets

thank you source jamesandre.ws

the form_for([:admin, @user]) must have the [] brackets to avoid errors like "Only get requests are allowed"

 <% form_for([:admin, @user]) do |f| %>
 <%= render :partial => 'form' %>
 <%= submit_tag "Create" %>
 <% end %>
November 4, 2009
1 thank

Using hidden tags

To use an <input type="hidden" /> tag, use the following syntax:

  <% form_for(@post) do |f| %>
    <%= f.hidden_field :user_id, { :value => user.id } %>
  <% end %>