如标题所示,如何使用country_select gem添加提示?
目前只是试着让它运转我试过
<%= f.country_select(:country, { prompt: 'Please select..' }, {prompt: 'Please select..'}, {prompt: 'Please select..'} ) %>
答案 0 :(得分:1)
3rd是country_select helper中的选项参数,所以
<%= f.country_select(:country, your_options_method, {prompt: 'Please select..'}) %>