如何检查EL中的布尔条件?


90

这样对吗?

<c:if test="${theBooleanVariable == false}">It's false!</c:if>

还是我可以这样做?

<c:if test="${!theBooleanVariable}">It's false!</c:if>

Answers:


122

您可以在此处查看EL(表达式语言)描述。

您的两个代码都是正确的,但我更喜欢第二个代码,因为将布尔值与true或进行比较false是多余的。

为了提高可读性,您还可以使用not运算符:

<c:if test="${not theBooleanVariable}">It's false!</c:if>


4

你也可以这样检查

<c:if test="${theBooleanVariable ne true}">It's false!</c:if>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.