Thymeleaf th:表单元素上的每个属性都失败了

时间:2018-03-28 06:22:21

标签: thymeleaf

th:each为空时,我发现Thymeleaf <form>${items}元素上无效。

<form th:each="item,iterStat : ${items}" >
    <span th:text="${iterStat.size}"> Hello </span>
</form>

org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'size' cannot be found on null

但是,<div>元素

是可以的
<div th:each="item,iterStat : ${items}" >
    <span th:text="${iterStat.size}"> Hello </span>
</div>

Thymeleaf包含在Spring Boot v1.5.4.RELEASE

为什么?

0 个答案:

没有答案