How to add default value to a number_field in rails?

后端 未结 5 1459
长发绾君心
长发绾君心 2021-02-01 01:48

I\'ve created a form

<%= form_for [current_user,@product,@bid] do |f| %>
  

<%= f.number_field :bid_amount %>

<%= f.n

5条回答
  •  -上瘾入骨i
    2021-02-01 02:14

    user740584 is right, the user should not be able to edit the product_id.

    If you really do need it on your form you can use a

    <%= f.hidden_field :product_id %>
    

提交回复
热议问题