Rails - 向country_select添加提示

时间:2015-04-25 20:38:51

标签: ruby-on-rails gem form-helpers

如标题所示,如何使用country_select gem添加提示?

目前只是试着让它运转我试过

<%= f.country_select(:country, { prompt: 'Please select..' }, {prompt: 'Please select..'}, {prompt: 'Please select..'} ) %>

1 个答案:

答案 0 :(得分:1)

3rd是country_select helper中的选项参数,所以

<%= f.country_select(:country, your_options_method, {prompt: 'Please select..'}) %>