8
我需要將列表中的產品顯示爲3列,其中包括foreach
。JSTL foreach:get下一個對象
這裏是我的代碼:
<table>
<c:forEach items="${lstProduct}" var="product" varStatus="status" step="3">
<tr>
<td>
<!--product of column left will be display here -->
${product.id}
${product.name}
</td>
<td>
<!--product of column middle will be display here -->
<!--I need something like this: productMiddle = product.getNext() -->
</td>
<td>
<!--product of column right will be display here -->
<!-- productRight = productMiddle.getNext() -->
</td>
</tr>
</c:forEach>
</table>
的問題是如何找下一個產品列表?
謝謝你。完善。 – Mohit 2014-09-14 08:08:35