thymeleaf中的判断总结

Posted acm-bingzi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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:if="${session.dbUser.user.face!=null && session.dbUser.user.face!=‘‘}"

 

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

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

 

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

 

原创文章,欢迎转载,转载请注明出处!

以上是关于thymeleaf中的判断总结的主要内容,如果未能解决你的问题,请参考以下文章

thymeleaf 怎么判断添加属性

关于Themleaf学习总结

Thymeleaf 布局中的 Bootstrap 导航栏突出显示

SpringBoot——Thymeleaf中的条件判断(th:ifth:unlessth:switchth:case)

SpringBoot——Thymeleaf中的条件判断(th:ifth:unlessth:switchth:case)

Thymeleaf 中如何判断list集合中是不是包含某个值

(c)2006-2024 SYSTEM All Rights Reserved IT常识