在Thymeleaf中使用instanceof
有没有办法instanceof
在Thymeleaf中使用Java 运算符?
就像是:
<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>
更多有关在百里香叶中使用SpEL和方言的信息。
以上是 在Thymeleaf中使用instanceof 的全部内容, 来源链接: utcz.com/qa/403234.html