상세 컨텐츠

본문 제목

JSTL 리스트 넘버, 순번 (varStatus, index, count)

JavaScript & HTML

by husks 2016. 3. 23. 15:37

본문

반응형


페이지에서 데이터를 보여줄 때 앞에 No(번호) 를 붙여주는 경우가 있습니다.


DB에서 가져와서 보여줘도 되지만 여건이 안된다면 JSTL에서 바로 보여줄 수 있습니다.


아래 문구를 참고하여 보시기 바랍니다.


varStatus="status"


<td>${status.index}</td>

<td>${status.count}</td>


				<table class="table table-bordered table-hover specialCollapse">
				  	<thead>
				  		<tr>
							<th class="text-center" rowspan="2">index</th>
							<th class="text-center" rowspan="2">count</th>
						</tr>
					</thead>
					<tbody>
						<c:forEach var="testResult" items="${testResultList}" varStatus="status">
							<tr>
					    		<td>${status.index}</td>
					    		<td>${status.count}</td>
					    	</tr>
						</c:forEach>
					</tbody>
				</table>







.index 는 0부터 시작

.count 는 1부터 시작


반응형

관련글 더보기

댓글 영역