我找不到不使用 EL 访问 spring 模型的方法

发布于 2024-10-14 18:12:45 字数 211 浏览 0 评论 0原文

我在创建与 Spring 一起使用的 JSP 时遇到问题。我将所有对象放在 ModelAndView 的模型中,使用 EL 可以轻松访问它们。问题是从通常的 <% code %> 访问它们。假设我有一个名为“foo”的模型参数,有没有办法将它放在一个变量中,我可以在 JSP 的 <% %> 块中的标准 Java 代码中使用该变量?

I have problem when creating JSPs to use with Spring. I put all my objects in the Model of ModelAndView, it's easy to access them using EL. The problem is to access them from usual <% code %>. Suppose I have a parameter from the model called "foo", is there a way to have it in a variable that I can use in standard Java code in the JSP in a <% %> block?

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

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

发布评论

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

评论(1

雪落纷纷 2024-10-21 18:12:45

您需要从请求上下文中提取它:

<%
  Object model = request.getAttribute("modelName");
%>

其中 modelNameModelAndView 中模型对象的名称。

You'd need to extract it from the request context:

<%
  Object model = request.getAttribute("modelName");
%>

where modelName is the name of the model object in the ModelAndView.

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