SpringBoot整合模板引擎Thymeleaf(2)


版权声明

  • 本文原创作者:谷哥的小弟
  • 作者博客地址:http://blog.csdn.net/lfdfhl

概述

Thymeleaf十分类似于JSP中使用的EL表达式。整体而言,Thymeleaf简洁、优雅、高效;非常适合小型项目的快速开发。

Thymeleaf常用标签简述

在此,概要介绍Thymeleaf常用标签。

标签 功能 示例
th:text 显示文本

description

th:utext 显示文本(对特殊标签不转义)

conten

th:value 为表单元素的value属性赋值
th:if 判断条件
th:each 元素遍历 tr th:each="user,userStat:${users}">
th:id 标记控件
th:object 替换对象
th:with 变量赋值(定义局部变量)
th:style 设置样式 th:style="'display:' + @{(${sitrue} ? 'none' : 'inline-block')} + ''"
th:onclick 点击事件 th:onclick="'getCollect()'"
th:unless 和th:if判断相反 Login
th:href 链接地址 Login />
th:switch 多路选择,配合th:case 使用
th:case th:switch的一个分支

User is an administrator

th:fragment 片段声明
th:include 片段包含 />
th:insert 片段插入
th:replace 片段替换
th:selected 选中 th:selected="(${xxx.id} == ${configObj.dd})"
th:src 外部资源地址 App Logo
th:inline 定义js脚本可以使用变量

你可能感兴趣的:(Spring,spring,boot,Thymeleaf)