每个春季Thymeleaf最后都不起作用

时间:2018-06-03 18:45:11

标签: java spring spring-boot thymeleaf

我正在通过以下代码迭代mongodb文档。

<tr th:each="document, state : ${data}">
            <td th:text="${state.last}"></td>
</tr>

我得到了Exception。

org.thymeleaf.exceptions.TemplateProcessingException: 
Exception evaluating SpringEL expression: "state.last"

1 个答案:

答案 0 :(得分:0)

guide的基础上,我建议您反转状态和文档,同样如下:

<tr th:each="state,document : ${data}">
            <td th:text="${state.last}"></td>
</tr>

如果documentth:each属性中定义的状态变量。 否则,尝试提供有关您正在经历的对象的更多信息