LoginSignup
122
101

More than 5 years have passed since last update.

Ruby on Rails - hidden_fieldの使い方

Last updated at Posted at 2014-05-27
<%= form_for @order do |f| %>
  <%= f.hidden_field :service, "test" %>
  <%= f.submit %>
<% end %>

だとうまくいきません。

値を指定するには

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

としましょう。

122
101
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
122
101