Rails - 预先使用grouped_options_for_select选择多个选项

时间:2014-05-23 10:08:17

标签: ruby-on-rails actionviewhelper

我想在rails 4.1中使用grouped_options_for_select时预先选择多个选项

方法签名是

grouped_options_for_select(grouped_options, selected_key= = nil, options = {})

selected_key只允许匹配精确选项的单个值。我想预先选择多个选项,因为我使用的是多选。反正有吗?

1 个答案:

答案 0 :(得分:5)

您可以为selected_key提供一系列值,以满足您的需求。

来自documentation

  

" selected也可以是使用a时要选择的值数组   多选。"

如果您查看grouped_options_for_select的{​​{3}},则只需通过options_for_select调用selected_key