如何在options_from_collection_for_select中添加“select one ...”

问题描述 投票:24回答:3

以下是我的选择表格,它正常工作。

当用户加载页面时,它应显示初始的“选择一个......”,其值为null或''。

我试图将它添加到Object但是无法并且很乐意获得帮助!

非常感谢!


在我看来:

= select_tag 'incident[fault_id]' , options_from_collection_for_select( Fault.all, :id, :label)

我使用Rails 3.2和HAML


更新:

我偶然发现了一些非常甜蜜的东西:

include_blank: 'select one...'

或完全

= f.collection_select :fault_id, Fault.order(:label), :id, :label, include_blank: 'select one...'

如果有人也喜欢......

参考:http://api.rubyonrails.org/classes/ActionView/Helpers/FormOptionsHelper.html

ruby-on-rails
3个回答
42
投票

options_from_collection_for_select返回一串选项标签,这些标签是通过迭代集合并将调用结果分配给value_method作为选项值并将text_method作为选项文本分配而编译的。

所以只需在前面加上“select_one”选项字符串,不带值:

 = select_tag 'incident[fault_id]', content_tag(:option,'select one...',:value=>"")+options_from_collection_for_select( Fault.all, :id, :label)

24
投票

:promptselect_tag的财产,而不是options_from_collect_for_select所以

select_tag("sales_rep[manufacturer_id]", options_from_collection_for_select(@manufacturers, "id", "name"), { :prompt => 'Select Manufacturer' })

0
投票

您可以尝试以下方法:

collection_select(:sales_rep, :manufacturer_id, @manufacturers, :id, :name, { :prompt => 'Select Manufacturer' })
© www.soinside.com 2019 - 2024. All rights reserved.