gpt4 book ai didi

java - 如何访问自定义标签中foreach标签中的var变量?

转载 作者:太空宇宙 更新时间:2023-11-04 10:33:41 27 4
gpt4 key购买 nike

如何在自定义标签中访问foreach标签的​​var值?

<c:foreach items=“{collection}” var=“items”>
<custom:tag name=items />
</foreach>

如何将 var 的值分配给自定义标记中的属性名称?

我使用了pageContext.getAttribute(\"item"\),但它不起作用。

最佳答案

<c:foreach items=“{collection}” var=“items”>
<c:set var="itemsToPass" value="${items}"/>
<% pageContext.setAttribute("forEachVar", itemsToPass); %>
<custom:tag name="${pageScope.forEachVar}"/>
</c:forEach>

您可以在标记中使用 ${pageScope.forEachVar} (请记住将其转换为您需要的任何内容,例如使用 pageContext.getAttribute(...) 将对象转换为字符串,如 String itemsName= (String) pageContext.getAttribute("forEachVar");)。

关于java - 如何访问自定义标签中foreach标签中的var变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49724036/

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