我有,我需要的形式,一個簡單的文本字段的表單進行填寫:必填字段上collection_select類型字段
<%= f.text_field :email, :required => true %>
下一個字段是,我要強制用戶到collection_select類型選擇一個選項。我想:
<%= f.collection_select(:list_ids, List.where(user_id: current_user), :id, :name, {}, {multiple: true}), :required => true %>
它給我的錯誤:
syntax error, unexpected ',', expecting ')' ..., :name, {}, {multiple: true}), :required => true);@output_... ...^
沒有:required => true
選項的代碼工作正常。在這種情況下,我如何強制用戶進行選擇?由於
的可能的複製[爲什麼?需要=>真不工作的收集\ _select(http://stackoverflow.com/questions/24767768/why-is - 需要 - 真的沒有在收集選擇) – SsouLlesS
考慮選擇我的答案作爲接受的答案,這樣社會上的其他人將幫助你,當你有更多的問題... – SsouLlesS