<%= select_tag(:event_type, options_from_collection_for_select(@event_types, 'id', 'name', 1), { :include_blank => true } ) %>
这将生成所需的所有选项,但默认情况下不选择空白选择。为什么
<%= select_tag(:event_type, options_from_collection_for_select(@event_types, 'id', 'name', 1), { :include_blank => true } ) %>
这将生成所需的所有选项,但默认情况下不选择空白选择。为什么