1

我有这个使用 Spring Web Flow 框架的 Web 应用程序。在我的主页中,我默认显示员工列表。当我单击特定行时,我需要重定向到显示该行详细视图的另一个页面。我正在考虑通过 URL 参数在我的行中传递“名称”字段。

这是可能的还是 Spring web flow 支持从 URL 获取参数?

<a href="edit.do?row_name=testName">name</a>
4

1 回答 1

4

您可以从特殊的 EL 变量中获取您的请求参数requestParameters。请参阅:http ://static.springsource.org/spring-webflow/docs/2.0.x/reference/htmlsingle/spring-webflow-reference.html#el-variable-requestParameters

于 2009-10-28T02:27:13.777 回答