布尔字面量是true和false。比如:
true
false
<div th:if="${user.isAdmin()} == false"> ...
在这个例子里,== false写在了花括号的外面,所以Thymeleaf会照看它。如果它写在花括号里面,则由OGNL/SpringEL引擎负责:
== false
<div th:if="${user.isAdmin() == false}"> ...
Last updated 5 years ago