我正在使用simple-form gem中的集合来呈现一个字符串数组,我有gone through this answer,但是那里的解决方案不能很好地工作。
这是标签
<%= f.input :training_modes, collection: get_training_modes, include_blank: false, input_html: { multiple: true } %>但是,当我通过这个select保存时,我会得到这样的数组
["", "Instructor Led Training", "Webex"]发布于 2016-09-10 05:21:48
您需要传递带有select的include_hidden: false选项以删除隐藏字段
<%= f.input :training_modes, collection: get_training_modes, include_blank: false, include_hidden: false, input_html: { multiple: true } %>希望这能帮上忙!
https://stackoverflow.com/questions/39422544
复制相似问题