您好,登錄后才能下訂單哦!
在Thymeleaf中如何正確的使用th:each和th:if方法?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
一、th:each
作用:用于遍歷controller層發送過來的集合。
例:
Controller代碼:
@Controller public class HelloController { @RequestMapping("/success") public String success(Map<String,Object> map){ map.put("users", Arrays.asList("張三","李四","王五")); return "success"; } }
下面我們通過th:each屬性在html頁面將其遍歷顯示出來
<!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <h5 th:text="${user}" th:each="user:${users}"></h5> </body> </html>
講解:
th:each="user:${users}"
其中${users}是將取出名為users的List集合,每次遍歷取出List集合中的一個元素賦值給user
注意:th:each每次遍歷都會生成一個包含它的標簽,如我們舉的這個例子,users中一共有三個元素,所以會遍歷三次,每次都會生成一個h5標簽
二、th:if
Thymeleaf 的條件判斷是 通過 th:if 來做的,只有為真的時候,才會顯示當前元素
<p th:if="${testBoolean}" >如果testBoolean 是 true ,本句話就會顯示</p>
取反可以用not, 或者用th:unless.
<p th:if="${not testBoolean}" >取反 ,所以如果testBoolean 是 true ,本句話就不會顯示</p>
<p th:unless="${testBoolean}" >unless 等同于上一句,所以如果testBoolean 是 true ,本句話就不會顯示</p>
除此之外,三元表達式也比較常見
<p th:text="${testBoolean}?'當testBoolean為真的時候,顯示本句話,這是用三相表達式做的':''" >
看完上述內容,你們掌握在Thymeleaf中如何正確的使用th:each和th:if方法的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。