Rails - 添加提示 country_select
Rails - Add prompt to country_select
如标题所示,如何使用country_select gem添加提示?
目前只是为了让它正常工作我试过了
<%= f.country_select(:country, { prompt: 'Please select..' }, {prompt: 'Please select..'}, {prompt: 'Please select..'} ) %>
3rd 是 country_select 助手中的一个选项参数,所以,
<%= f.country_select(:country, your_options_method, {prompt: 'Please select..'}) %>
如标题所示,如何使用country_select gem添加提示?
目前只是为了让它正常工作我试过了
<%= f.country_select(:country, { prompt: 'Please select..' }, {prompt: 'Please select..'}, {prompt: 'Please select..'} ) %>
3rd 是 country_select 助手中的一个选项参数,所以,
<%= f.country_select(:country, your_options_method, {prompt: 'Please select..'}) %>