我是第一次使用 Thymeleaf,我需要澄清一下模板。如果我正确理解了文档,我可以在我的页面中包含一个模板——或者只是其中的一个片段。例如,我可以这样写:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head th:include="template/layout :: header">
</head>
<body>
Hello world
<div th:include="template/layout :: footer"></div>
</body>
</html>
但我想要的实际上是使用模板的相反方式:我不想在页面中包含模板片段,而是想在我的模板中包含页面,如下所示:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head>
...
</head>
<body>
<div id="my-template-header">...</div>
<div id="the-content">
<!-- include here the content of the current page visited by the user -->
???
</div>
<div id="my-template-footer">...</div>
</body>
换句话说,有没有办法在 Thymeleaf 中拥有等效的Sitemesh 装饰器标签?
谢谢