是否可以在"每个"中对象上调用一个方法。在Thymeleaf循环?我试图创建一个动态表,其中行和列都可以是动态的。表具有行列表和列列表。列有一个getValue方法,对于给定的Row,可以获取该值。但我无法从Thymeleaf调用此getValue(行行)。
我有这个Thymeleaf代码:
<table>
<tr th:each="row : ${table.rows}">
<td th:each="column : ${table.columns}">
<span th:text="${column.value(row)}"/>
</td>
</tr>
</table>
这会导致异常:
Exception evaluating SpringEL expression: "column.value(row)"
甚至可以在Thymeleaf中这样做,例如将变量传递给其他变量的方法?
答案 0 :(得分:12)
我发现了这个问题,因为我向这个方法传递了一些东西,它不是一个getter方法所以我必须提供完整的方法名称:getValue
而不仅仅是value
}:
<table>
<tr th:each="row : ${table.rows}">
<td th:each="column : ${table.columns}">
<span th:text="${column.getValue(row)}"/>
</td>
</tr>
</table>