我找不到不使用 EL 访问 spring 模型的方法
我在创建与 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要从请求上下文中提取它:
其中
modelName
是ModelAndView
中模型对象的名称。You'd need to extract it from the request context:
where
modelName
is the name of the model object in theModelAndView
.