将默认空值添加到选择标记

时间:2013-11-19 16:55:30

标签: ruby-on-rails select haml

我目前有这行代码:

=select_tag :resource_id, options_for_select( Resource.find(:all, :conditions => "resourcetype = 'data-sheets' && category = 'Data Centres'", :order => "title ASC").map{|l| [l.title, l.id] }, @dc.try(:resource_id) )

在某种意义上,它显示从数据库中提取的列表,并选择字段的当前值,但我需要在列表顶部添加“请选择”选项,没有值..

1 个答案:

答案 0 :(得分:1)

“空白”有一个选项

:include_blank => true

此外,您可以使用prompt设置该文字的值