我在电子商务网站上使用 Spree,每个将要出售的产品都有多种颜色,大多数客户都希望购买同一产品的不同颜色(例如变体)。我希望允许客户在同一页面上添加同一产品的多个变体,我目前有一个带有单选按钮的变体列表,允许选择要购买的变体和数量。相反,我只想要一些默认为零的数量框,这样客户就可以简单地将他们想要的数量添加到每个变体中,然后单击添加到购物车。在查看了订单控制器后,我想出了这个
<% has_checked = false
@product.variants.active.each_with_index do |v,index|
next if v.option_values.empty? || (!v.in_stock && !Spree::Config[:show_zero_stock_products])
checked = !has_checked && (v.in_stock || Spree::Config[:allow_backorders])
has_checked = true if checked %>
<li>
<label for="<%= ['products', @product.id, v.id].join('_') %>">
<span class="variant-description">
<%= variant_options v %> <%= text_field_tag (@product.has_variants? ? :quantity : "variants[#{@product.master.id}]"),1, :class => "title", :size => 3 %>
</span>
<% if variant_price_diff v %>
<span class="price diff"><%= variant_price_diff v %></span>
<% end %>
</label>
</li>
<% end%>
从某种意义上说,它显示了我想要的东西,变体和数量框列表,但是每当我添加数量并将它们添加到购物车时,它只是默认为列表中的最后一项和最后一个数量框中的数量。我已经尝试了一些东西,但没有一个是正确的,有谁知道我会怎么做?