在 Thymeleaf 中使用 instanceof

Use instanceof in Thymeleaf

有没有办法在 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>

尝试:

<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 SpEL and dialects in thymeleaf