jsp中 c:forEach 如何輸出遞增序號
阿新 • • 發佈:2019-01-22
第一:jsp頁面中引入:
<%@ taglib prefix=”c” uri=”http://java.sun.com/jsp/jstl/core”%>
第二:建立相應的table
<tr>
<th>編號 </th>
<th>訂單號 </th>
<th>支付時間</th>
<th>同步狀態</th>
<th >價格</th>
<th>支付狀態</th>
<th>回撥地址</th>
<th>渠道號</th>
</tr>
<c:forEach items="${requestScope.userDataList}" var="order" varStatus="status">
<tr>
<td >${requestScope.offset+status.index}</td>
<td>${order.orderid}</td>
<td>${order.paydate}</td>
<td>${order.sync_status}</td>
<td>${order.price}</td>
<td >${order.status}</td>
<td>${order.cp_notify_url}</td>
<td>${order.channel_code}</td>
</tr>
</c:forEach>
注意:status.index是從0開始的,因此+1