当前位置: 代码迷 >> JavaScript >> jstl 判断list是不是为空
  详细解决方案

jstl 判断list是不是为空

热度:987   发布时间:2012-09-10 11:02:32.0
jstl 判断list是否为空
<%@ taglib uri="http://java.sun.com/jstl/c" prefix="c"%> 

判断集合和对象是否为空:
list为集合,user为对象名 

<c:choose>
<c:when test="${empty caseList}">
    <div align="center">
<font size="5" face="华文行楷" color="blue"><strong>暂
无 病 历!</strong> </font>
<br>
     </div>

        </c:when>

<c:otherwise>
   有病例
</c:otherwise>
  相关解决方案