ThymeleafList指定数量条数循环
项⽬使⽤Thymeleaf模板,页⾯只需要显⽰list⾥⾯的前3条数据,这时候应该怎么做呢,不像jsp那样,可以使⽤begin=“0”,end=“2”这样,这时候可以使⽤ th:if="${userStat.index} lt 3 判断当前的迭代索引,从0开始。这是index属性。lt 就是 <,这样就可以获取前3 条数据了。
<tr th:each="user,userStat:${supplierVotes}" th:class="${userStat.odd}? 'odd'" th:if="${userStat.index} lt 3" th:object="${user}">
<td th:text="${unt}">1</td>
<a th:href="@{/user/details(customerId=${user.customerId})}" target="_blank"><td th:text="*{customerId}">1</td></a>
<td th:text="${arFlag}">1</td>
thymeleaf用法<td th:text="|${arFlag} ${user.customerId}|">1</td>
<td><span th:if="${arFlag == '2017'}">特殊提供</span></td>
<td><a th:href="@{/user/details(customerId=${user.customerId})}" target="_blank">详情</a></td>
</tr>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论