我想做这样的事情:
<div th:insert="default_page :: entire_page">
<p>
Hello World
</p>
</div>
<html th:fragment="entire_page">
// Somehow get <p> Hello World </p> in here
</html>
换句话说,我想将片段包含的内部html包含到实际片段本身中。
这可能吗?
编辑 明确地说,我不想将“ Hello World”硬编码为变量,然后将其发送到片段。我确实希望能够将html放入片段调用程序中,并使它出现在片段中。
这个想法是,我有一个body div,如果可以的话,我只想在每个页面上填充内容。