我无法使用 select_tag 获取选定的值。在我的 new.html.erb 上,我有以下代码:
<%= select_tag "dams_provenance_collection[subjectType][]", options_for_select(subjectTypeArray), :prompt=>"Select subject type" %>
在edit.html.erb上,我想使用从new.html.erb中选择的值作为默认值,所以我尝试了:
<%= select_tag 'dams_provenance_collection[subjectType][]', options_for_select(subjectTypeArray, params[:selected]) %>
但它没有用。有谁知道如何将 new.html.erb 中的选定值设置为 edit.html.erb 中的默认值?任何帮助,将不胜感激。