我正在寻找一种方法将百里香叶片的结构包含在一个页面中 我的意思如下:
碎片定义如下:
<div class="container" th:fragment="container">
<div class="row">
{the content of the page continues here}
</div>
</div>
页面模板:
<div th:replace="fragments/main:: container">
{I can continue here for eq, <div class="col-md-5"></div>}
</div>
我不知道这是否可行,但我正在寻找一种方法来做到这一点。
答案 0 :(得分:1)
由于layout dialect of Thymeleaf,可以通过添加来完成
<th:block layout:fragment="content"/>
到所需的布局,并在视图中将其用作父元素。