JSTL:迭代列表但以不同方式对待第一个元素
我正在尝试使用 jstl 处理列表。我想以不同于其他元素的方式对待列表的第一个元素。也就是说,我只想将第一个元素的显示设置为阻止,其余元素应隐藏。
我所拥有的似乎很臃肿,并且不起作用。
感谢您的任何帮助。
<c:forEach items="${learningEntry.samples}" var="sample">
<!-- only the first element in the set is visible: -->
<c:if test="${learningEntry.samples[0] == sample}">
<table class="sampleEntry">
</c:if>
<c:if test="${learningEntry.samples[0] != sample}">
<table class="sampleEntry" style="display:hidden">
</c:if>
I'm trying to process a list using jstl. I want to treat the first element of the list differently than the rest. Namely, I want only the first element to have display set to block, the rest should be hidden.
What I have seems bloated, and does not work.
Thanks for any help.
<c:forEach items="${learningEntry.samples}" var="sample">
<!-- only the first element in the set is visible: -->
<c:if test="${learningEntry.samples[0] == sample}">
<table class="sampleEntry">
</c:if>
<c:if test="${learningEntry.samples[0] != sample}">
<table class="sampleEntry" style="display:hidden">
</c:if>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它可以做得更短,无需
:It can be done even shorter, without
<c:if>
:是的,在 foreach 元素中声明 varStatus="stat",这样您就可以询问它是第一个还是最后一个。它是 LoopTagStatus 类型的变量。
这是 LoopTagStatus 的文档:
http: //java.sun.com/products/jsp/jstl/1.1/docs/api/javax/servlet/jsp/jstl/core/LoopTagStatus.html
它有更多有趣的属性...
编辑:从 axtavt 复制
它可以做得更短,没有
:Yes, declare varStatus="stat" in the foreach element, so you can ask it if it's the first or the last. Its a variable of type LoopTagStatus.
This is the doc for LoopTagStatus:
http://java.sun.com/products/jsp/jstl/1.1/docs/api/javax/servlet/jsp/jstl/core/LoopTagStatus.html
It has more interesting properties...
Edited: copied from axtavt
It can be done even shorter, without
<c:if>
: