我正在尝试用模板片段替换标签。包含之后,将删除部分HTML代码
在我的根页面中,
<p th:replace="mycomponent::firstFragment" th:with="myVar=#{'Hello'}"></p>
我的模板中有
<p th:fragment="firstFragment" th:utext="#{someText}"><span th:utext="${myVar}"></span></p>
<p th:fragment="secondFragment" th:utext="#{someOtherText}"><span ></span>${otherVar}</p>
结果仅是片段的p元素,而没有内部跨度。我尝试使用th:inline="text"
,但也许我用错了方式
答案 0 :(得分:0)
您可以尝试th:include
代码。例子.....
<span th:include="fragments/navbar::navbarPortion" th:remove="tag"/>