4. 注释 模板名称:comment.html 4.1 标准 HTML/XML注释 语法:<!-- --> 4.2 解析器级注释块(Parser-level comment blocks) 语法:<!--/* */--> thymeleaf解析时会移除代码 <!--/*--> <div> you can see me only before Thymeleaf processes me! </div…
九.局部变量(local variable) 之前在th:each中遇到过局部变量 <tr th:each="prod : ${prods}"> ... </tr> 其中prod就是局部变量. 除此之外,thymeleaf提供了另外一种声明方式,通过使用th:each,语法如下: <div th:with="firstPer=${persons[0]}"> <p>The name of the first person…