我知道如何组合一个简单的选择框,从模型中获取其值
<%= f.collection_select(:sector_id, Sector.all, :id, :name, :prompt => "Please Select a Sector") %>
我的问题是如何让用户选择多个选项,然后将它们存储在模型中。我知道我需要使用
:multiple => true
但不确定语法
通常对于模型的多个条目我会使用accepts_nested_attributes_for,但我认为我不需要这个例子吗?
由于
答案 0 :(得分:16)
经过一些试验和错误后确定
<%= f.collection_select(:sector_id, Sector.all, :id, :name, {:prompt => "Please Select a Sector"}, {:multiple => true}) %>
让我选择多个选项
答案 1 :(得分:-1)
collection_select(object, method, collection, value_method, text_method, options = {}, html_options = {})
选项哈希中的内容在页面顶部描述,并包括:prompt。 html_options哈希用于您要设置的html属性,例如多个,一个类,一个id。