1
<%= select_tag(:event_type, options_from_collection_for_select(@event_types, 'id', 'name', 1), { :include_blank => true }) %>
這將生成所有需要的選項,但默認情況下未選中空白選擇。爲什麼Rails Ruby slect_tag:include_blank未被選爲默認
<%= select_tag(:event_type, options_from_collection_for_select(@event_types, 'id', 'name', 1), { :include_blank => true }) %>
這將生成所有需要的選項,但默認情況下未選中空白選擇。爲什麼Rails Ruby slect_tag:include_blank未被選爲默認
options_from_collection_for_select
方法的第四個參數是選定的值。 「1」在你的情況。使用options_from_collection_for_select(@event_types, 'id', 'name')