jsp中 c:forEach 如何输出递增序号

第一: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 

你可能感兴趣的:(面试题,面试,jsp,forEach,jstl)