gpt4 book ai didi

java - JSTL获取表中的序列号

转载 作者:行者123 更新时间:2023-12-01 22:50:48 27 4
gpt4 key购买 nike

我在每个循环中使用 JSTL 来迭代列表并在表中显示该数据。

我想知道如何在该表中显示序列号。

<c:forEach items="${item.getApps()}" var="app">
<tr><td>....</td> //need to display serial number here
<td><c:out value="${app.getApp()}"></c:out></td>
</tr></c:forEach>

TIA。

最佳答案

您应该使用该标记的varStatus属性来跟踪循环状态

<c:forEach items="${item.getApps()}" var="app" varStatus="counter">
<tr><td> ${counter.count}"</td> //need to display serial number here
<td><c:out value="${app.getApp()}"></c:out></td>
</tr></c:forEach>

这应该适合你。

关于java - JSTL获取表中的序列号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24773208/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com