關於thymeleaf的多條件及多屬性設定
關於thymeleaf的屬性設定 th:attr自定義多屬性設定 thymeleaf可用通過th:attr設定自定義的屬性,以便在前端應用到對應的屬性值:
<a href="#" th:attr="[email protected]{/manage/index},data-title=#{name}"></a> th:if多條件判斷 th:if多條件判斷,li標籤裡的th:if都滿足是才會顯示該標籤
<div th:object="${session.user}"> <ul th:if="${#object.islogin}"> <li th:if="${#object.type==1}" th:if="${#object.name=='admin'}">admin管理員</li> <li th:if="${#object.type==2}" th:if="${#object.name=='user'}">admin管理員</li> </ul> </div> th:class表示式選擇class 通過表示式判斷選擇應用對應的class
<a href="#" th:class="${user.type==1}? 'user' : 'admin'" th:text="${user.name}"></a> 1 以上內容是本人在開發過程中需要用的內容,網上並沒有相關的介紹使用。 --------------------- 作者:流遠長季 來源:CSDN 原文:https://blog.csdn.net/cndnsnnn/article/details/78759445?utm_source=copy 版權宣告:本文為博主原創文章,轉載請附上博文連結!