- thymeleaf循环遍历数字
<ul th:each="user : ${userList}">
<li>
<div th:each="star : ${#numbers.sequence(1,user.star)}">
<img th:src="@{/img/star.png}">
</div>
</li>
</ul>
2.thymeleaf中th:style的用法
<div style="margin-top: 10px">
<span>经验:</span>
<div class="stat-percent" th:text="${user.zcExpe}+ '%'" ></div>
<div class="progress progress-mini" style="width: 55%;display: inline-block">
<div th:style="'width:'+ ${user.zcExpe}+'%'" name="width" class="progress-bar">
</div>
</div>
</div>
版权声明:本文为zeng_0825原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。