thymeleaf中的判断总结

简介: thymeleaf中的判断总结

判断String字符串,添加引号

  th:class="${flag=='forum.html'}?'active'"

判断boolean类型,注意不能当成字符串处理,不能添加引号

  th:style="${session.simpleFlag==false}?'':'color:red'"

判断数字,注意不能直接使用小于号,会被当成html的元素标签,导致编译出错

  th:style="${pageNo}-3>0?'':'display: none'"

比较两个后台数据大小

  th:style="${sum}-1>${pageNo}?'':'display: none'"

判断是否等于null


 th:style="${session.dbUser==null}?'display:none;':'padding:0px 0px 0px 20px;'"


 th:unless="${sub.publishDate}==null"   或者  th:unless="${sub.publishDate==null}"   两种方法都行

多个判断,与运算符应使用转义字符


 th:if="${session.dbUser.user.face!=null && session.dbUser.user.face!=''}"



多个判断,或运算符应直接使用


 th:if="${session.dbUser.user.face==null || session.dbUser.user.face==''}"



三目运算符中使用到多个后台数据


 th:value="${topic == null} ? 'abc' : ${topic.title}"


 th:value="${item.id} == ${section.id} ? 'a' : ${item.b}"



用到的基本上就这些了,注意,三目运算符,获取session中的值等小问题



Javapub参考巨人:https://www.cnblogs.com/acm-bingzi/p/thymeleafJudge.html

目录
相关文章
freemarker中对null值的处理
官方文档 ​​​​​​FreeMarker 中文官方参考手册 (foofun.cn)
|
3月前
|
Java 数据库 Spring
springboot+thymeleaf中前台页面展示中、将不同的数字替换成不同的字符串。使用条件运算符
这篇文章介绍了如何在Spring Boot和Thymeleaf框架中使用条件运算符来根据数字字段的值动态替换显示不同的字符串,例如将订单状态的数字0和1替换为"未付款"和"已付款"等。
springboot+thymeleaf中前台页面展示中、将不同的数字替换成不同的字符串。使用条件运算符
|
XML Java 编译器
FreeMarker循环
FreeMarker循环
142 0
|
JavaScript 前端开发
Thymeleaf属性值详解
Thymeleaf属性值详解
|
Java 数据库 Spring
spring boot 查询到的数据返回null
spring boot 查询到的数据返回null
367 0
thymeleaf 的 th:each 标签示例
thymeleaf 的 th:each 标签示例
133 0
freemarker中遇到null报错的处理方法
freemarker中遇到null报错的处理方法
258 0
freemarker中遇到null报错的处理方法
【Thymeleaf】thymeleaf中给input的value属性设置值
【Thymeleaf】thymeleaf中给input的value属性设置值
536 0
SpringBoot——Thymeleaf中的表达式基本对象、表达式功能对象
SpringBoot——Thymeleaf中的表达式基本对象、表达式功能对象
SpringBoot——Thymeleaf中的表达式基本对象、表达式功能对象