2014-03-06 51 views
1

我想在我的Rails應用程序的下拉列表中有一個「選擇一個選項」選項。我現在用的是collection_select助手標籤,它看起來是這樣的:包含空白和默認值collection_select助手

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

我想下拉的默認選項爲「選擇國家」。

+0

檢查我的更新答案,使用'include_blank',而不是'prompt'。 –

回答

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