小编典典

评估列表是否为空JSTL

jsp

我一直在尝试评估此数组列表是否为空,但是这些都没有被编译:

<c:if test="${myObject.featuresList.size == 0 }">                   
<c:if test="${myObject.featuresList.length == 0 }">                 
<c:if test="${myObject.featuresList.size() == 0 }">                 
<c:if test="${myObject.featuresList.length() == 0 }">                   
<c:if test="${myObject.featuresList.empty}">                    
<c:if test="${myObject.featuresList.empty()}">                  
<c:if test="${myObject.featuresList.isEmpty}">

如何评估ArrayList是否为空?


阅读 276

收藏
2020-06-08

共1个答案

小编典典

empty
运算符

所述empty操作者是一个 前缀 ,可以被用来确定一个值是否为空值或空白操作。

<c:if test="${empty myObject.featuresList}">
2020-06-08