如何在 scriptlet 中使用 JSP 中可用的对象,这可以完成吗
我有一个名为 statements
的变量,我正在对其进行迭代并命名 row
<c:forEach items="${statements}" var="row">
如果我执行以下操作,我现在可以在 scriptlet 中使用此变量 row
<% ArrayList<String> myRows = **** something here *** %>
我必须用什么替换 ** 这里的某些内容 * 才能做到这一点。
注意:我知道理论上这很糟糕,据我所知我遇到的问题(比这更复杂,只能通过这种方式解决。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它可以作为页面、请求、会话或应用程序范围的属性使用。如果范围已知,只需对感兴趣的范围调用
getAttribute()
即可。或者,如果范围未知,请使用
PageContext#findAttribute()
。它随后在页面、请求、会话和应用程序范围中搜索并返回第一个匹配项。以上基本上也是 EL 幕后所做的事情。
与具体问题无关,这绝对是一种解决方法。如果您详细说明为什么需要这样做,那么我们也许能够提出真正的解决方案而不是变通办法。同时,请仔细阅读:如何避免 JSP 文件中的 Java 代码?
It's available as an attribute of the page, request, session or application scope. If the scope is known, just call
getAttribute()
on the scope of interest.Or if the scope is unknown, use
PageContext#findAttribute()
. It searches in subsequently the page, request, session and application scopes and returns the first match.The above is also basically what EL is doing under the covers.
Unrelated to the concrete problem, this is definitely a workaround. If you elaborate in detail why need to do this, then we may be able to come up with real solutions instead of workarounds. In the meanwhile, read this thoroughly: How to avoid Java code in JSP files?
简单的答案:不要使用 scriptlet。
复杂的答案:不要使用 scriptlet。
这就是全部内容,真的:不要使用 scriptlet。
如果您知道 JSTL 代码如何工作以及它从哪里获取 ${statements} 值,您也会知道如何在 scriptlet 中使用它。
但由于您不应该使用 scriptlet,所以我不会再告诉您,我只会引导您走向灭亡,而且我不打算这样做。
无论如何,除非你的 ${statements} 是一个
Collection
你的“row”本地永远不会是一个>
List
:)simple answer: don't use scriptlets.
complex answer: don't use scriptlets.
And that's all there is to it, really: don't use scriptlets.
If you knew how the JSTL code works, where it gets the ${statements} value from, you'd know how to use it in a scriptlet as well.
But as you shouldn't use scriptlets, I'm not going to tell you any more, I'd only be leading you towards your doom and I don't intend to do that.
Anyway, unless your ${statements} is a
Collection<List<String>>
your "row" local is never going to be aList<String>
:)