Ruby on Rails form select

前端 未结 1 836
旧时难觅i
旧时难觅i 2021-01-22 08:35

Hey guys I\'m a rails newbie and I have a question about select boxes in forms. Here is my code right now.

<%= form_for @message do |f| %>
  <%= f.text_         


        
1条回答
  •  星月不相逢
    2021-01-22 09:19

    Yes, what you want is easy to do. Just add a pair of values, your placeholder text and a blank value, to the beginning of your select options. Try this:

    <%= f.select :topic, [['Please select an option', nil], 'Test1', 'test2'] %>

    0 讨论(0)
提交回复
热议问题