如何将 for 循环索引添加到 JSP 变量

How do I add for loop index to the JSP variable

如何添加仅在 ${link[i].alt} 不为空时执行 for 循环的逻辑?
如何将索引添加到 jsp var ...如 ${link${i}.credit}??

<c:forEach var="i" begin="1" end="6">
    <li>${i}
        <a class="lnid-sec1_lnk${i}" href="${link.href}">
            <div class="l-wrapper">
                <img data-src="${link1.credit}" src="${link1.credit}" alt="${link1.alt}" width="100">
                <div class="team-name">
                    <span>${link1.alt}</span>
                </div>
            </div>
        </a>
    </li>
</c:forEach>

添加变量状态

所以

<c:forEach var="i" begin="1" end="6" varStatus="yourIndex">

然后

(${yourIndex.index}) 包含索引

非空可以用这个

<c:if test="${!empty link[i].alt}"></c:if>

年数:1

<c:if test="${!empty link[i].alt}"></c:if>

年:2

<c:set var="your_var" value="${link[i.index].credit}"/>