Comparing the enum constants in thymeleaf
很多地方给的答案都是:
<div th:if="${widget.color.name() == 'GREEN'}">
Green is for go.
</div>但是我使用了之后不生效。所以使用了toString():
th:if="${ day.toString() == 'MONDAY'}"也可以使用 java.lang.Enum.name()方法
参考资料:
Comparing the enum constants in thymeleaf
Working with Enums in Thymeleaf
评论已关闭