Thymeleaf 字符串拼接
一种是字符串拼接:
<span th:text="'当前是第'+${sex}+'页 ,共'+${sex}+'页'"></span>
另一种更简洁的方式,使用“|”减少了字符串的拼接:
<span th:text="|当前是第${sex}页,共${sex}页|"></span>
Thymeleaf 可直接使用的常量和符号
1、所有的具体数字,比如 10, 99, 0等等;(数字字面量)
2、true 、false (布尔字面量)
3、null (null字面量)
4、算术运算:+ , - , * , / , %
5、关系比较: > , < , >= , <= ( gt , lt , ge , le )
6、相等判断:== , != ( eq , ne )
Thymeleaf 三元运算判断
<span th:text="${sex eq 1} ? '男' : '女'">未知</span>
<span th:text="${sex eq 1 ? '男' : '女'}">未知</span>
标签:26,springboot,常量,Thymeleaf,thymeleaf,拼接,字符串,null,字面 From: https://www.cnblogs.com/healthinfo/p/17283450.html