我一直在尝试评估此数组列表是否为空,但是这些都没有被编译:
<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是否为空?
empty是 运算符 :
empty
所述empty操作者是一个 前缀 ,可以被用来确定一个值是否为空值或空白操作。
<c:if test="${empty myObject.featuresList}">