传递 URL 参数 Spring Web Flow
我有这个使用 Spring Web Flow 框架的 Web 应用程序。在我的主页中,我默认显示员工列表。当我单击特定行时,我需要重定向到显示该行的详细视图的另一个页面。我正在考虑通过 URL 参数传递行中的“名称”字段。
这可能吗?Spring Web Flow 是否可以支持从 URL 获取参数?
<a href="edit.do?row_name=testName">name</a>
I have this web application using Spring Web Flow framework. In my main page I have a default display of a list of employees. When I click a particular row I need to redirect to another page displaying a detailed view of the row. I was thinking of passing the "name" field in my row through URL parameter.
Is this possible or can Spring web flow support getting parameters from the URL?
<a href="edit.do?row_name=testName">name</a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从特殊的 EL 变量
requestParameters
获取请求参数。请参阅: http://static.springsource.org/spring-webflow/docs/2.0.x/reference/htmlsingle/spring-webflow-reference.html#el-variable-requestParametersYou can get your request parameters from the special EL variable
requestParameters
. See: http://static.springsource.org/spring-webflow/docs/2.0.x/reference/htmlsingle/spring-webflow-reference.html#el-variable-requestParameters