<%= select_tag(:event_type, options_from_collection_for_select(@event_types, 'id', 'name', 1), { :include_blank => true } ) %>
这将生成所需的所有选项,但默认情况下不选择空白选择。为什么
答案 0 :(得分:1)
options_from_collection_for_select
方法的第四个参数是选定值。在你的情况下“1”。使用options_from_collection_for_select(@event_types, 'id', 'name')