JAVA----Thymeleaf 常用语法

变量

Thymeleaf 的主要作用是把 model 中的数据渲染到html 中

model 中的变量

${...} 语法和 el 表达式差不多,但它是 ognl 表达式

自定义变量

script

th
th:id    替换id    
th:text    文本替换    

description

th:utext 支持html的文本替换

conten

th:object 替换对象
th:value 属性赋值 th:with 变量赋值运算
< /div> th:style 设置样式 th:style="'display:' + @{(${sitrue} ? 'none' : 'inline-block')} + ''" th:onclick 点击事件 th:οnclick="'getCollect()'" th:each 属性赋值 tr th:each=“user,userStat:${users}”> th:if 判断条件
[[${server.disk.usage}]]%
%0
逻辑判断

成年人

分控制

用户是管理员

用户是经理

用户是别的玩意

循环

你可能感兴趣的:(JAVA,java,Thymeleaf)