// -6ren">
gpt4 book ai didi

java - 将 JSTL var 与 Java 方法结合起来

转载 作者:行者123 更新时间:2023-11-30 03:35:13 24 4
gpt4 key购买 nike

如何在 java 函数内使用 JSTL foreach 中的 JSTL 属性 ${theDetail.id} ?我已经尝试了很多,但没有任何作用。

<c:forEach items="<%= facade.getAllDetails() %>" var="theDetail">

// how to use ${theDetail.id} inside this java function
<c:forEach items="<%= facade.getSomeStuffById(...) %>" vars="theStuff">
${theStuf.name}
</c:forEach>
</c:forEach>

最佳答案

切勿在 JSP 标记内使用 scriptlet 表达式。事实上,根本不要使用 scriptlet。 JSP 标记被设计为使用 JSP EL 表达式。不是 scriptlet 表达式。

编写代码的方法是,假设facade是某个范围的属性

<c:forEach items="${facade.allDetails}" var="theDetail">

<c:forEach items="${facade.getSomeStuffById('someHardCodedId')}" var="theStuff">
${theStuff.name}
</c:forEach>
</c:forEach>

关于java - 将 JSTL var 与 Java 方法结合起来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28136117/

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