当前位置: 首页 > 工具软件 > Thymeleaf > 使用案例 >

【Thymeleaf】Thymeleaf中的判断语句

茹照
2023-12-01


IF判断

Thymeleaf 条件

gt:great than(大于)>
ge:great equal(大于等于)>=
eq:equal(等于)==
lt:less than(小于)<
le:less equal(小于等于)<=
ne:not equal(不等于)!=

案例

 <div th:if="${score gt 60}">及格了</div>

其实按照常规写法也是可以的

 <div th:if="${score >= 60}">及格了</div>

多个判断可以用and 或者or来连接

<div th:if="${score lt 60 and score gt 0.0}"></div >

我们还可以给不同的值设置不同的样式,比如成绩大于60字体颜色位绿色,小于60的为红色

<div th:if="${score>=60}" th:text="${score}" style="color: green"></div >
<div  th:if="${score<60 and score > 0.0}" th:text="${score}" style="color: red"></div >

Switch Case

代码

<select th:switch="${gender}">
        <option th:case="1">男</option>
        <option th:case="0">女</option>
        <option th:case="*">其他</option>
</select>

unless

Thymeleaf中是没有else的,但是可以使用unless配合if来完成if else的操作
unless字面意思就是除非
unless也可以理解为在表达式前加了个非

            <!--/* word不为空时显示 */-->
            <div th:if="${word}" th:text="${word}"></div>

            <!--/* word为空时显示(除非word不为空才不显示) */-->
            <div th:unless="${word}" th:text="${word}"></div>
 类似资料: