我正在尝试根据分类(产品的属性)对一组产品(获得输入查询)进行分组
我想要的输出是
分类 1
产品 1 产品 2 产品 3 产品 4
产品 5 ...
分类 2
pod6 产品 7
分类 3
产品 8 产品 9..
我在视图中使用以下代码:
<% taxonomies.each do |taxonomy|%> #"taxomonies" is a set of unique taxonomies for retrieved products
<h1><%= taxonomy%></h1>
<ul>
<% collection.each_with_index do |product,i| %> #"collection" is the list of products retrieved
<li>
<%@ptaxon = product.get_taxonomy%>
<%if @ptaxon == taxonomy%>
<%code for listing product%>
<%end%>
</li>
<%end%>
</ul>
<%end%>
这根据分类法对产品进行分组,但格式不是我想要的。有人可以指出我的错误。
编辑:也尝试使用 <br> ,但没有帮助!
这是我得到的输出。我希望分类法耳环、手镯和项链从一个新系列开始。谢谢