Thymeleaf模板引擎语法
- th:text 用于显示值
- th:object 接收后台传来的对象
- th:action 提交表单
- th:value 绑定值
- th:field 绑定字段值
- th:if 条件成立
- th:unless 条件不成立
- th:switch/th:case switch结构
- th:each 遍历元素
- th:fragment 标记公共代码块
- th:include/th:replace 调用公共代码
- th:href 设置连接
- th:inline JS代码访问模型中的属性(访问格式[[${}]])
- @{...} 处理URL
- # 调用Thymeleaf的共用对象
- 使用@{}引用web静态资源,使用${}访问模型中的数据