How to add default value to a number_field in rails?

后端 未结 5 1471
长发绾君心
长发绾君心 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条回答
  •  时光说笑
    2021-02-01 02:28

    I'm assuming bid belongs to product. Therefore product_id should not be on form at all for the user to see. As an id number it's meaningless and it must be set to the correct product for all bids.

    The action on the form will automatically mean it gets set correctly in the database.

提交回复
热议问题