JSP常用的el表达式:判断是否为空、循环、比较、索引等实例讲解
程序员文章站
2022-08-04 16:31:23
1、判断是否为空
如果为空
1、判断是否为空
如果为空
<c:if test="${empty allcontactstatspermonth}"> <ul class="def_report_td"> <p style="text-align: center;"> 暂无数据 </p> </ul> </c:if>
如果不为空
<c:if test="${not empty allcontactstatspermonth}"> 不为空,展示数据 </c:if>
2、循环用<c:foreach></c:foreach>、当前list的索引${p.index}(注意:p是事先声明的。varstatus=“p”)
<c:foreach items="${allcontactstatspermonth}" var="contactstatspermonth" varstatus="p"> <c:if test="${p.index <= 50}"> <ul class="def_report_td contact_area_analysis"> <li style="width: 7%;">${contactstatspermonth.month}</li> </ul> </c:if> </c:foreach>