当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
中为什么?