假设我有一个包含 5 个值的列表。
List<Item> Test
Test[0]
{Item.category,Item.Number,Item.Format,Item.Order} etc
我的要求是我必须根据这个列表中的值编写一些 HTML 代码。
应该写的方式是相同的 Item.Category 值应该写在一起,意思是如果有 5 个值,item.category
其中 3 个相同,另外 2 个不同,那么这 3 个项目应该组合在一起,意思是item.category
标题其他值如数字、格式等将是标题内的内容。
它应该显示如下内容:
<h1>Item.category(the 3 same categories should appear here just one)</h1>
{
all other elements * 3 times
}
如果我使阅读和理解变得困难,请告诉我。