JSTL forEach 分隔符
JSTL 中是否有内置功能可以在执行 foreach 时输出分隔符?
任务是在除最后一次之外的每次迭代之后(或除第一次之外的每次迭代之前)输出分隔符(如逗号)。 foreach 有 ELSE 标签吗?
Is there a built in feature in JSTL to output separators while doing foreach?
The task is to output separators (like commas) after each iteration except the last one (or before each except the first). Is there any ELSE tag for foreach?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
varStatus
属性,该属性引用LoopTagStatus
:Use the
varStatus
attribute, which references an object of typeLoopTagStatus
:您可以在 EL 中使用 `varStatus' 属性,
You may use `varStatus' attribute in EL,