gpt4 book ai didi

jsp-tags - 两个变量的 JSP foreach 标记

转载 作者:行者123 更新时间:2023-12-05 01:07:52 26 4
gpt4 key购买 nike

我想做这样的事情

<c:forEach var="item1" items="List1" var="item2" items="List2">
<p> ${item1} ${item2}</p>
</c:forEach>

一种解决方案是遍历两个列表,如果两者大小相同
<c:forEach var="i" begin="0" end="$(fn:length(List1))">
<p> <%= List1.get(i) %> <%= List2.get(i)%> //wrong syntax
</c:forEach>

任何想法如何实现这一点。

最佳答案

您可以调用varStatus.index获取当前轮次的索引,然后将其用作第二个列表的查找。注意 List 的长度s 虽然,否则它会抛出一个 Exception 。设置itemsList两者中的最大值。

<c:forEach var="element" items="${List1}" varStatus="status">
<p>
${element}
${List2[status.index]}
</c:forEach>
  • Documentation .
  • How to avoid Java Code in JSP-Files?
  • 关于jsp-tags - 两个变量的 JSP foreach 标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17850842/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com