这是对的吗?
<c:if test="${theBooleanVariable == false}">It's false!</c:if>
或者我可以这样做吗?
<c:if test="${!theBooleanVariable}">It's false!</c:if>
答案 0 :(得分:117)
您可以查看EL(表达语言)说明here。
你的代码都是正确的,但我更喜欢第二个,因为将布尔值与true
或false
进行比较是多余的。
为了更好的可读性,您还可以使用not
运算符:
<c:if test="${not theBooleanVariable}">It's false!</c:if>
答案 1 :(得分:20)
两者都有效。您可以写==
eq
答案 2 :(得分:3)
你也可以这样检查
<c:if test="${theBooleanVariable ne true}">It's false!</c:if>