1
 <%= select_tag(:event_type, options_from_collection_for_select(@event_types, 'id', 'name', 1),  { :include_blank => true } ) %> 

这将生成所需的所有选项,但默认情况下不选择空白选择。为什么

4

1 回答 1

1

方法的第四个参数options_from_collection_for_select是选择值。“1”在你的情况下。利用options_from_collection_for_select(@event_types, 'id', 'name')

options_from_collection_for_select

于 2013-06-05T23:07:44.933 回答