无法在thymeleaf中传递模型属性th:each

时间:2019-10-21 17:46:07

标签: thymeleaf

我正在尝试遍历列表,并将当前迭代和另一个模型变量传递给片段,但“其他”模型变量始终为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--> 中始终为空。

1 个答案:

答案 0 :(得分:0)

我发现,th:replace基本上使th:with无效。我更改了代码以使用th:include,但情况看起来更好。