在Thymeleaf中使用instanceof

问题描述 投票:12回答:1

有没有办法在Thymeleaf中使用Java instanceof运算符?

就像是:

<span th:if="${animal} instanceof my.project.Cat" th:text="A cat"></span>
<span th:if="${animal} instanceof my.project.Dog" th:text="A dog"></span>
java spring spring-boot thymeleaf spring-el
1个回答
21
投票

尝试:

<span th:if="${animal.class.name == 'my.project.Cat'}" th:text="A cat"></span>

或者,如果使用Spring:

<span th:if="${animal instanceof T(my.project.Cat)}" th:text="A cat"></span>

更多关于using SpELdialects in thymeleaf

© www.soinside.com 2019 - 2024. All rights reserved.