thymeleaf - 列表内列表中对象的总和

发布于 2025-01-14 13:54:04 字数 464 浏览 1 评论 0原文

我使用 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

The current table

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月亮是我掰弯的 2025-01-21 13:54:04

您可以使用 集合投影< /a> 和聚合函数来完成此操作:

<tbody>
  <tr th:each="category : ${categories}">
    <td th:text="${category.name}" />
    <td th:text="${#lists.size(category.subCategories)}" />
    <td th:text="${#aggregates.sum(category.subCategories.![#lists.size(products)])}" />
  </tr>
</tbody>

表达式 category.subCategories.![#lists.size(products)] 生成 subCategories 中的产品列表,您可以使用该列表求和#aggregates.sum

You can use collection projection and aggregate functions to accomplish this:

<tbody>
  <tr th:each="category : ${categories}">
    <td th:text="${category.name}" />
    <td th:text="${#lists.size(category.subCategories)}" />
    <td th:text="${#aggregates.sum(category.subCategories.![#lists.size(products)])}" />
  </tr>
</tbody>

The expressions category.subCategories.![#lists.size(products)] produces a list of the products in subCategories, which you can just sum using #aggregates.sum.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文