1、Thymeleaf模板就是增加一些额外元素属性的HTML,这些属性能够指导模板如何渲染request数据。
<p th:test = "${message}">placeholder message</p>
th我推测是中文的”替换“。
2、th:each,迭代元素集合。
<div th:each = "ingredient : ${wrap}">
3、有如下代码:文章来源:https://www.toymoban.com/news/detail-668019.html
<h3>Designate your wrap:</h3>
<div th:each="ingredient : ${wrap}">
<input th:field="*{ingredients}" type="checkbox" th:value="${ingredient.id}"/>
<span th:text="${ingredient.name}">INGREDIENT</span><br/>
</div>
这段代码的主要目的是为wrap
列表中的每个ingredient
元素创建一个复选框,并显示其名称。复选框的值是每个ingredient
的id
,并且所有选中的复选框的值将被收集并绑定到ingredients
属性中。文章来源地址https://www.toymoban.com/news/detail-668019.html
到了这里,关于零散笔记:《Spring实战》Thymeleaf的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!