如何在 scriptlet 中使用 JSP 中可用的对象,这可以完成吗

发布于 2024-10-22 16:11:50 字数 408 浏览 1 评论 0 原文

我有一个名为 statements 的变量,我正在对其进行迭代并命名 row

<c:forEach items="${statements}" var="row">

如果我执行以下操作,我现在可以在 scriptlet 中使用此变量 row

<% ArrayList<String> myRows = **** something here *** %>

我必须用什么替换 ** 这里的某些内容 * 才能做到这一点。

注意:我知道理论上这很糟糕,据我所知我遇到的问题(比这更复杂,只能通过这种方式解决。

I have a variable called statements which I am iterating over and naming row

<c:forEach items="${statements}" var="row">

Can I now use this variable row in a scriptlet if I do something like

<% ArrayList<String> myRows = **** something here *** %>

What do I have to replace ** something here * with to be able to do this.

Note: I know in theory this is bad, as far as I can see the problem I have (which is more complicated that this, can only be solved this way.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

后eg是否自 2024-10-29 16:11:50

它可以作为页面、请求、会话或应用程序范围的属性使用。如果范围已知,只需对感兴趣的范围调用 getAttribute() 即可。

<%
    Object pageAttribute = pageContext.getAttribute("name");
    Object requestAttribute = request.getAttribute("name");
    Object sessionAttribute = session.getAttribute("name");
    Object applicationAttribute = application.getAttribute("name");
%>

或者,如果范围未知,请使用 PageContext#findAttribute()。它随后在页面、请求、会话和应用程序范围中搜索并返回第一个匹配项。

<%
    Object unknownScopedAttribute = pageContext.findAttribute("name");
%>

以上基本上也是 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.

<%
    Object pageAttribute = pageContext.getAttribute("name");
    Object requestAttribute = request.getAttribute("name");
    Object sessionAttribute = session.getAttribute("name");
    Object applicationAttribute = application.getAttribute("name");
%>

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.

<%
    Object unknownScopedAttribute = pageContext.findAttribute("name");
%>

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?

滥情哥ㄟ 2024-10-29 16:11:50

简单的答案:不要使用 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 a List<String> :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文