在 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>