我的模型中有两个项目,我想使用jstl foreach对其进行相同的迭代。如何使用正确的语法实现此目的?
您可以调用varStatus.index获取当前迭代的索引,然后将其用作第二个列表的查找。
varStatus.index
例如,如果您有两个列表people.firstnames,则people.lastnames可以执行以下操作:
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>