How to set up form for a hash in Rails?

B Seven picture B Seven · Sep 22, 2011 · Viewed 15k times · Source

I have some data associated with a model that is in a hash. The hash is generated in the controller: @hash.

What is the proper way to create a form for this data?

I came up with the following code for the view:

  <% @hash.keys.each do |key| %>
    <div class="field">
      <%= f.label key %><br />
      <%= text_field_tag "hash_" + key, @hash[key] %> 
    </div>
  <% end %>

This generates the form, but it creates each hash item as a separate variable in the form. This doesn't seem to be the proper way to submit the data back. I would like to get the data back as a hash, and access it with params[:hash].

What is the best way to do this?

Working in Rails 3.07, Ruby 1.9.2.

Thanks.

EDIT: I should have made this clear. This code is inside of a form generated for a model. So, the form needs to submit all the fields for the model, plus the above hash.

Answer

nemesv picture nemesv · Sep 22, 2011

Based on this article you should change the name in text_field_tag to

<% @hash.keys.each do |key| %>
  <div class="field">
    <%= f.label key %><br />
    <%= text_field_tag "hash[" + key + "]", @hash[key] %> 
  </div>
<% end %>