使用 JSTL forEach 循环的 varStatus 作为 ID
我想使用 JSTL forEach 循环中的计数,但我的代码似乎不起作用。
<c:forEach items="${loopableObject}" var="theObject" varStatus="theCount">
<div id="divIDNo${theCount}">
</div>
</c:forEach>
产生
<div id="divIDNojavax.servlet.jsp.jstl.core.LoopTagSupport$1Status@5570e2" >
I want to use the count from the JSTL forEach loop, but my code doesnt seem to work.
<c:forEach items="${loopableObject}" var="theObject" varStatus="theCount">
<div id="divIDNo${theCount}">
</div>
</c:forEach>
produces
<div id="divIDNojavax.servlet.jsp.jstl.core.LoopTagSupport$1Status@5570e2" >
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
varStatus
设置的变量是一个LoopTagStatus
对象,而不是 int。使用:澄清一下:
${theCount.index}
从0
开始计数,除非您设置了begin
属性${theCount .count}
从1
开始计数The variable set by
varStatus
is aLoopTagStatus
object, not an int. Use:To clarify:
${theCount.index}
starts counting at0
unless you've set thebegin
attribute${theCount.count}
starts counting at1
您可以使用以下任何一个:
JSTL c:forEach varStatus 属性
属性 Getter 描述
current getCurrent() 当前项目(来自集合)
迭代轮次。
index getIndex() 当前轮的从零开始的索引
count getCount() 本轮迭代的计数从一开始
是迭代的第一次
last isLast() 指示当前轮次是否为最后一次迭代的标志
begin getBegin() 开始属性的值
end getEnd() 结束属性的值
步骤getStep() 步骤属性的值
you'd use any of these:
JSTL c:forEach varStatus properties
Property Getter Description
current getCurrent() The item (from the collection) for the current
round of iteration.
index getIndex() The zero-based index for the current round of
iteration.
count getCount() The one-based count for the current round of iteration
is the first pass through the iteration
last isLast() Flag indicating whether the current round is the last pass through the iteration
begin getBegin() The value of the begin attribute
end getEnd() The value of the end attribute
step getStep() The value of the step attribute
你可以试试这个。类似的结果
You can try this. similar result
它确实帮助我为下面的代码动态生成
showDetailItem
的 id。如果执行此行
会打印以下内容:Its really helped me to dynamically generate ids of
showDetailItem
for the below code.if you execute this line
<af:outputText value="#{ttfVs}"/>
prints the below: