thymeleaf - 列表内列表中对象的总和
我使用 spring boot + thymeleaf 和 mySQL DB 我有 3 个实体:
- 类别
- 子类别
- 产品
我想显示产品总和表中
这是显示子类别总和的代码:
<tbody>
<tr th:each="category : ${categories}">
<td th:text="${category.name}" />
<td th:text="${#lists.size(category.subCategories)}" />
</tr>
</tbody>
I use spring boot + thymeleaf and mySQL DB
I have 3 entities:
- Category
- SubCategory
- Porducts
I would like to show the sum of products in the table
This is the code to show the sum of sub category:
<tbody>
<tr th:each="category : ${categories}">
<td th:text="${category.name}" />
<td th:text="${#lists.size(category.subCategories)}" />
</tr>
</tbody>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 集合投影< /a> 和聚合函数来完成此操作:
表达式
category.subCategories.![#lists.size(products)]
生成 subCategories 中的产品列表,您可以使用该列表求和#aggregates.sum
。You can use collection projection and aggregate functions to accomplish this:
The expressions
category.subCategories.![#lists.size(products)]
produces a list of the products in subCategories, which you can just sum using#aggregates.sum
.