Thymeleaf:"Exception evaluating OGNL expression" 在一个简单的 for 循环中
Thymeleaf: "Exception evaluating OGNL expression" in a simple for loop
我有这个控制器:
it.render(
"my-list.html",
mapOf(
"votes-positive" to repo.votesOf("x"),
)
)
//...
data class Vote(
val name: String,
val type: Type,
) {
enum class Type { POS, NEG }
}
我的模板文件"my-list.html
:
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<body>
<div th:each="vote : ${votes-positive}">
<span th:text="${vote.name}"></span>
</div>
</body>
我在 运行 时收到此错误,这让我发疯:
[qtp119358627-23] ERROR org.thymeleaf.TemplateEngine - [THYMELEAF][qtp119358627-23] Exception processing template "my-list.html": Exception evaluating OGNL expression: "vote.name" (template: "my-list.html" - line 21, col 15)
org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating OGNL expression: "vote.name" (template: "my-list.html" - line 21, col 15)
是否有 Thymleaf 调试模式?有没有办法打印模型树?不知道为什么表达不对
尝试将 votes-positive
更改为不使用连字符的内容。这被解释为 OGNL 减法表达式中的减号。
我有这个控制器:
it.render(
"my-list.html",
mapOf(
"votes-positive" to repo.votesOf("x"),
)
)
//...
data class Vote(
val name: String,
val type: Type,
) {
enum class Type { POS, NEG }
}
我的模板文件"my-list.html
:
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<body>
<div th:each="vote : ${votes-positive}">
<span th:text="${vote.name}"></span>
</div>
</body>
我在 运行 时收到此错误,这让我发疯:
[qtp119358627-23] ERROR org.thymeleaf.TemplateEngine - [THYMELEAF][qtp119358627-23] Exception processing template "my-list.html": Exception evaluating OGNL expression: "vote.name" (template: "my-list.html" - line 21, col 15)
org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating OGNL expression: "vote.name" (template: "my-list.html" - line 21, col 15)
是否有 Thymleaf 调试模式?有没有办法打印模型树?不知道为什么表达不对
尝试将 votes-positive
更改为不使用连字符的内容。这被解释为 OGNL 减法表达式中的减号。