Rails hidden field undefined method 'merge' error

本小妞迷上赌 提交于 2019-12-17 17:29:04

问题


I wanna do something like this in rails

Here is what I have so far in rails:

<%= form_for @order do |f| %>
  <%= f.hidden_field :service, "test" %>
  <%= f.submit %>
<% end %>

But then I get this error:

undefined method `merge' for "test":String

How can I pass values in my hidden_field in rails?


回答1:


You should do:

<%= f.hidden_field :service, :value => "test" %>

hidden_field expects a hash as a second argument




回答2:


You are using a hidden_field instead of a hidden_field_tag. Because you are using the non-_tag version, it is assumed that your controller has already set the value for that attribute on the object that backs the form. For example:

controller:

def new
  ...
  @order.service = "test"
  ...
end</pre>

view:

<%= form_for @order do |f| %>
  <%= f.hidden_field :service %>
  <%= f.submit %>
<% end %>



回答3:


It works fine in Ruby 1.9 & rails 4

<%= f.hidden_field :service, value: "test" %>



回答4:


A version with the new syntax for hashes in ruby 1.9:

<%= f.hidden_field :service, value: "test" %>



回答5:


This also works in Rails 3.2.12:

<%= f.hidden_field :service, :value => "test" %>




回答6:


By the way, I don't use hidden fields to send data from server to browser. Data attributes are awesome. You can do

<%= form_for @order, 'data-service' => 'test' do |f| %>

And then get attribute value with jquery

$('form').data('service')


来源:https://stackoverflow.com/questions/6636875/rails-hidden-field-undefined-method-merge-error

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