thymeleaf只循环指定次数
时间:2019-11-10 00:49:31
收藏:0
阅读:1322
<select name="quiz3" > <option th:each="count:${#numbers.sequence(1,10)}" th:value="${count}" th:text="${count}"></option> </select>
th:each="count:${#numbers.sequence(1,10)}" 原文:https://www.cnblogs.com/book-mountain/p/11828597.html
评论(0)