我试图让用户能够选择其他项目,而不是像下面的代码那样选择一个项目。
<%= simple_form_for(@order, remote: true) do |f| %>
<%= f.error_notification %>
.......other order entries goes here ........
<h3>Items</h3>
<%= f.association :items, collection: Item.all, label_method: :name, value_method: :id, prompt: "Choose an item", input_html: { id: 'item-select2' } %>
<div class="product">
<div class="item"></div>
<div class="price"></div>
</div>
<%= f.submit %>
<% end %>