在 Thymeleaf 中使用 instanceof

2022-09-03 12:51:46

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

答案 1

尝试:

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

或者,如果使用弹簧:

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

更多关于在百里香茶中使用SpEL和方言的信息。


答案 2

推荐