1. 程式人生 > >JSP中foreach標籤(JSTL)的使用

JSP中foreach標籤(JSTL)的使用

在使用foreach標籤之前,需要在JSP中匯入標籤

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<table align="center" width="98%" border="0" cellspacing="1" cellpadding="0" class="resulttable">
    <tr>
        <th width="18%">卡種類型</th>
        <th width="82%">卡種等級</th>
</tr> <c:if test="${ empty command.cardList}"> <tr><td align="center" colspan="10" class="oddbgc" >無記錄</td> </tr> </c:if> <c:if test="${ not empty command.cardList}"> <c:forEach var="bean" items="${ command.cardList}"
varStatus="s">
<c:if test="${bean.dataLevel=='1'}"> <tr> <td align="left" class="<c:choose ><c:when test='${s.index%2 ==0}'>oddbgc</c:when><c:otherwise>evenbgc</c:otherwise></c:choose>"> <c:out
value="${bean.cardName}"/>
</td> <td align="left" class="<c:choose ><c:when test='${s.index%2 ==0}'>oddbgc</c:when><c:otherwise>evenbgc</c:otherwise></c:choose>"> <c:forEach var="childbean" items="${ command.cardList}" varStatus="sr"> <c:if test="${bean.cardCode eq childbean.parentCardCode}"> <c:out value="${childbean.cardName}"/> </c:if> </c:forEach> </td> </tr> </c:if> </c:forEach> </c:if> </table>

jsp頁面itertor或forEach迴圈輸出list:

JSP遍歷後臺傳過來的List(總結的比較好):
三種方法:使用jstl標籤
使用jsp內嵌Java程式碼遍歷list(在後臺把list放到session中)
使用struts標籤