我正在尝试遍历列表,并将当前迭代和另一个模型变量传递给片段,但“其他”模型变量始终为null。
plain_modulus
片段 <div th:each="place : ${results.placeResults}" class="col-sm-6 col-xl-4 mb-5">
<div th:replace="fragments/placecard :: placecard" th:with="place=${place},res=${results}"/>
</div> <!-- end for each-->
中始终为空。
答案 0 :(得分:0)
我发现,th:replace
基本上使th:with
无效。我更改了代码以使用th:include
,但情况看起来更好。