包含collection_select帮助程序的空白和默认值

时间:2014-03-06 16:28:53

标签: ruby-on-rails helper

我想在我的rails应用程序的下拉列表中有一个“选择一个选项”选项。我正在使用collection_select帮助器标签,它看起来像这样:

<%= collection_select(:country,:id,Country.order('name ASC'),:id,:name,{},{:class => "input-xlarge"}) %>

我希望下拉菜单的默认选项为“选择国家/地区”。

1 个答案:

答案 0 :(得分:1)

使用include_blank选项。

替换

<%= collection_select(:country,:id,Country.order('name ASC'),:id,:name,{},{:class => "input-xlarge"}) %>

<%= collection_select(:country,:id,Country.order('name ASC'),:id,:name,{include_blank: 'Select a country'},{:class => "input-xlarge"}) %>

请参阅official documentation here