2014-12-17 4 views
0

에서 다음 요소를 얻을 : 나에게 각 반복에서 인덱스와 product.name을 제공나는 다음과 같은 코드가 foreach 루프의 JSP/JSTL

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
          "http://www.w3.org/TR/html4/loose.dtd"> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> 
<title>JSTL forEach varStatus index Example</title> 
</head> 
<body> 
    <c:forEach items="${productList}" var="product" varStatus="status"> 
    <c:out value="${status.index+1}"/>.<c:out value="${product.name}" escapeXml="false" /> 
    </c:forEach> 
</body> 
</html> 

합니다. 예를 들어,

1 product1 
2 product2 
3 product3 

지금 난 아무 대답을 찾을 수 없습니다 내가 그것에 +1을 부가 index와 함께했던 것처럼 다음 반복에서 product.name을 얻을 수 있습니다. 누구든지 저를 위해 저 질문에 응답 할 수 있 었는가? 감사.

답변

2

이 시도 :

${productList[status.index+1].name}