如何检查 EL 中的布尔条件?
这是正确的吗?
<c:if test="${theBooleanVariable == false}">It's false!</c:if>
或者我可以这样做吗?
<c:if test="${!theBooleanVariable}">It's false!</c:if>
这是正确的吗?
<c:if test="${theBooleanVariable == false}">It's false!</c:if>
或者我可以这样做吗?
<c:if test="${!theBooleanVariable}">It's false!</c:if>
您可以在此处查看EL(表达式语言)描述。
你的两个代码都是正确的,但我更喜欢第二个,因为将布尔值与或冗余进行比较。true
false
为了提高可读性,您还可以使用运算符:not
<c:if test="${not theBooleanVariable}">It's false!</c:if>
两者都有效。而不是你可以写==
eq