我知道如何组合一个简单的选择框,该框从模型中获取其值

<%= f.collection_select(:sector_id, Sector.all, :id, :name, :prompt => "Please Select a Sector") %>

我的问题是我如何允许用户选择多个选项,然后将它们存储在模型中。我知道我需要用
:multiple => true

但是不确定语法

通常对于模型的多个条目,我会使用accepts_nested_attributes_for,但是我认为我不需要此示例是正确的吗?

谢谢

最佳答案

经过一番尝试和确定后还可以

<%= f.collection_select(:sector_id, Sector.all, :id, :name, {:prompt => "Please Select a Sector"}, {:multiple => true}) %>

让我选择多个选项

关于ruby - 在collection_select rails中选择多个选项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18074710/

10-12 13:09