Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

expected Hash (got Array) for param 'samples'

I have been following Railscasts episodes of Nested forms and complex forms. During the time of creating multiple model in a single form I was able to edit, update, delete and create records for sample models that were nested in the Batch model.

I have been breaking my head from a long time and tried searching around as well but could not get any right solution for solving this problem.

my development log file gives me the following error.

ERROR MESSAGE:

Status: 500 Internal Server Error
  expected Hash (got Array) for param `samples'

in my controller I have the update action like this

def update
     @batch = Batch.find(params[:id])

     respond_to do |format|
       if @batch.update_attributes(params[:batch])
         flash[:notice] = 'Successfully updated Batch.'
         format.html { redirect_to(@batch) }
         format.xml  { head :ok }
       else
         format.html { render :action => "edit" }
         format.xml  { render :xml => @batch.errors, :status => :unprocessable_entity }
       end
     end
   end

my view is something like this:

<%= form_for @batch do |f| %>
......
<%= f.fields_for :samples do |s_form| %>
.... s_form things
<% end %>
<% end %>

my model contains the same stuff :

has_many :samples, :dependent => :destroy

  accepts_nested_attributes_for :samples, :reject_if => lambda { |a| a[:content].blank? }, :allow_destroy => true

All suggestions are appreciated.

like image 647
A1aks Avatar asked Feb 13 '12 10:02

A1aks


2 Answers

for others who met the same problem:

this error is caused when you have two fields in your form like:

video: 'some string'
video['url']:  'some url'

then rails will crash with the error: expected Hash (got String) for param

the solution is quite simple: change 'video' to something else. e.g.:

video_origin_url: 'some string'
video['url']: 'some url'
like image 127
Siwei Avatar answered Nov 16 '22 23:11

Siwei


I had the same problem, and just fixed it.

Check the headers of your request. I mine I saw:

weight[2][name]:Tests
weight[2][value]:75
weight[1][name]:Quizzes
weight[1][value]:25
weight[][name]:Foo
weight[][value]:

It was the last two which caused the issue. In my case I had to give this weight an ID to get rid of the error.

like image 35
theschmitzer Avatar answered Nov 16 '22 22:11

theschmitzer