小编典典

是否可以在jstl中使用foreach同时迭代两个项目?

jsp

我的模型中有两个项目,我想使用jstl foreach对其进行相同的迭代。如何使用正确的语法实现此目的?


阅读 378

收藏
2020-06-08

共1个答案

小编典典

您可以调用varStatus.index获取当前迭代的索引,然后将其用作第二个列表的查找。

例如,如果您有两个列表people.firstnames,则people.lastnames可以执行以下操作:

<c:forEach var="p" items="${people.firstnames}" varStatus="status">
  <tr>
      <td>${p}</td>
      <td>${people.lastnames[status.index]}</td>
  </tr>
</c:forEach>
2020-06-08