JSTL 迭代 2 个数据集?
这可能是一件容易的事。我目前在 forEach 中有 1 个数据集,并且想同时迭代第二个数据集?这可能吗?
<c:set value="${dataList}" var="beans" />
<c:set value="${newDataList}" var="newBeans"/>
<c:forEach var="bean" items="${beans}" varStatus="loopCount">
This might be a easy one. I currently have 1 dataset in a forEach and would like to iterate over a second one at the same time? Is this possible?
<c:set value="${dataList}" var="beans" />
<c:set value="${newDataList}" var="newBeans"/>
<c:forEach var="bean" items="${beans}" varStatus="loopCount">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果集合的大小始终相等,您可以循环遍历一个集合并根据索引访问第二个集合。
If the collections are always equal in size, you can loop through one and access the second based on index.