1. 程式人生 > >thymeleaf 常用標籤

thymeleaf 常用標籤

1、th:field

th:field="*{user.sex}"  此標籤會自動填充資料,
比如使用者的性別 user.sex 如果不為空,則會自動勾選上

 2、th:each="hobby:${hobbyList}   藍色hobby 類似jstl中的var :每個變數名字

 

<label th:each="hobby:${hobbyList}">
    <input type="checkbox" class="hobby" th:value="${hobby.id}"
        th:text
="${hobby.name}" th:checked="${hobby.remarks}=='true'"/> </label>

jstl:
<c:forEach var="每個變數名字"   items="要迭代的list"   varStatus="每個物件的狀態"   begin="迴圈從哪兒開始"    end="迴圈到哪兒結束"    step="迴圈的步長">
     迴圈要輸出的東西
</c:forEach>