小编典典

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

jsp

它是否正确?

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

还是我可以这样做?

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

阅读 299

收藏
2020-06-08

共1个答案

小编典典

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

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

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

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