标签:需要 head 工具 url 对象 class 模板 方言 thymeleaf
⒈理解Thymeleaf
⒉如何识别Thymeleaf标准方言
1.需要页面引入命名空间
1 <html xmlns:th="http://www.thymeleaf.org"> 2 <head> 3 </head> 4 <body> 5 <span th:text="..."> 6 </body> 7 </html> 8
2.无需页面引入命名空间
1 <span data-th-text="...">
⒊表达式
1.${...}:获取变量值,OGNL
①获取对象的属性,调用方法
②使用内置的基本对象
③内置的一些工具对象
1 <span th:text="${book.author.name}">
2.*{...}:变量选择表达式,和${...}在功能上是一样的,区别在于,它是在当前选择的对象执行,而不是在整个上下文变量映射上。配合th:object使用简化代码
1 <div th:object="${book}"> 2 <span th:text="*{title}"></span> 3 </div>
3.#{...}:获取国际化内容
1 <span th:text="#{header.address.city}"></span>
4.@{...}:定义URL
5.~{...}:片段引用表达式
标签:需要 head 工具 url 对象 class 模板 方言 thymeleaf
原文地址:https://www.cnblogs.com/fanqisoft/p/10529614.html