您的位置:首页 > 博客中心 > 互联网 >

(转)thymeleaf中的判断总结

时间:2022-05-05 17:57

 判断String字符串,添加引号

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

 

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

  th:  或者  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中的值等小问题

热门排行

今日推荐

热门手游