九.局部变量(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…
使用模板的要点: 页面主体结构固定,具体参数可变,尽可能让参数动态化,才能提高模板的复用性 =================================================================== Thymeleaf's core is a DOM processing engine Processor: An Object which applies some logic to a DOM node Standard Dialect: a set of…