我正在尝试将属性“multiple”添加到我的选择标签中,如下所示:
<select class="chosen-select" id="segment_people" name="segment[people]" **multiple**>
<option value="2">john</option>
<option value="3">chico</option>
<option value="4">glenn</option>
<option value="5">chico</option>
<option value="21">glenn</option>
</select>
我在我的项目中使用 simple_form 但我找不到方法,我可以在我的标签中注入原始 html 吗?
这是我的表单代码:
<%= simple_form_for @segment do |f| %>
<%= f.input :name %>
<%= f.input :segment %>
<%= f.input :broadcast_date %>
<%= f.input :comment %>
<%= f.select :people, Person.all.map { |u| [u.first_name, u.id] },
{ include_blank: true },
{ class: 'chosen-select' } %>
<%= f.button :submit %>
<% end %>