thymeleaf th:each根据整数循环
生活随笔
收集整理的這篇文章主要介紹了
thymeleaf th:each根据整数循环
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
<div th:each="num, numStat : ${#numbers.sequence(0,9)}"><a target="_blank" th:href="${'images/atlas/'+ (numStat.index+1) + '.png'}"><img title="點擊查看圖片" th:src="${'images/atlas/'+ (numStat.index+1) + '.png'}" alt="圖片" ></a><span th:text="${'圖'+ (numStat.index+1)}">圖1</span>
</div>
如上所示, 使用 #numbers.sequence(0,9) 循環10次;使用numStat.index 獲取當前下標
總結
以上是生活随笔為你收集整理的thymeleaf th:each根据整数循环的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: IDEA正则表达式高级替换
- 下一篇: C语言求解定积分(蒙特卡罗方法)