本文介绍了在 Thymeleaf 中订购的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要按Asc的顺序显示这个foreach,我该怎么做?

I need show this foreach by order Asc, how can I do it?

<tr th:each="ment : ${mentor}" th:if="${ment.jobId == job.id}">
    <td th:text="${ment.id}"></td>
    <td th:text="${ment.name}"></td>
    <td th:text="${ment.qtyMentee}"></td>
    <td th:text="${ment.jobId}"></td>
</tr>

推荐答案

这可以通过列表的排序实用方法来实现,如 此处.

This could be achieved with sort utility methods for lists, described here.

/*
 * Sort a copy of the given list. The members of the list must implement
 * comparable or you must define a comparator.
 */
${#lists.sort(list)}
${#lists.sort(list, comparator)}

示例

<tr th:each="ment : ${#lists.sort(mentor)}">

这篇关于在 Thymeleaf 中订购的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 16:15