undefined method `stringify_keys!' ruby on rails

不羁岁月 提交于 2019-12-17 11:31:01

问题


I have this code:

def addcar
  @car = Car.new(params[:car])
  render :action => 'list'
end

<% @allcars.each do |cell| %>
  <p>
    <%= link_to cell.to_s, :controller => 'car', :action => 'addcar', :car => cell.to_s %>
  </p>
<% end %>

It's giving me this error:

undefined method `stringify_keys!' for "Honda":String

I don't understand what is wrong with :car.


回答1:


in the addcar method, you try to create a new object (create method) while transfering just a string to it (params[:car] which apparently is set to "Honda").

create expects to get an attributes hash and to stringify it's keys for the column names.

If you have a column named name in your cars table then try this:

@car = Car.new(:name => params[:car])


来源:https://stackoverflow.com/questions/1815697/undefined-method-stringify-keys-ruby-on-rails

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!