SpringBoot---条件(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为真的时候,显示本句话,这是用三相表达式做的':''" >p>

 

demo:
controller:

@GetMapping("/hello5") public String t5(Model model){ String html = "

html文本

"; model.addAttribute("html",html); model.addAttribute("t1",true); model.addAttribute("t2",true); return "index5"; }

index5.html:



      xmlns:th="http://www.thymeleaf.org">

    
    index5



    

if="${t1}" >显示

if="${not t1}">不显示

不显示

非转义的 html 文本

转义的 html 文本

SpringBoot---条件(th:if)_第1张图片

 

你可能感兴趣的:(SpringBoot---条件(th:if))