我正在尝试将属性“multiple”添加到我的select标签中,如下所示:
<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 %>
答案 0 :(得分:3)
我认为你不能在没有值的情况下添加属性。您可以将multiple: true
添加到html_options
,如下所示:
<%= f.select :people, Person.all.map { |u| [u.first_name, u.id] },
{ include_blank: true },
{ class: 'chosen-select', multiple: true } %>
这会将multiple="multiple"
添加到您的select
字段。