Spring MVC 3中如何获取组合的选定值?

发布于 2024-12-07 17:01:31 字数 114 浏览 0 评论 0原文

我在 JSP 中使用 Spring MVC 标记,并填充了其中的值。

如何从选择框中检索所选值并将其用于进一步操作?

I am using the Spring MVC <form:select> tag in my JSP and have populated the values in it.

How can I retrieve the selected value from the select box and use it for further operations?

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

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

发布评论

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

评论(2

雨落□心尘 2024-12-14 17:01:31

您可以在您提交的控制器中获取它们。例如:

@RequestMapping("/submit")
public String handle(@RequestParam Foo selectedFoo) {
}

这假设您有一个从 StringFoo 的转换器。否则,您可以简单地使用 String 作为参数。

如果您想将整个表单提交给 javabean,请创建一个 bean,其字段名称与 html 表单中的字段完全相同,并将其作为参数传递给处理方法。

You can obtain them in the controller to which you submit. For example:

@RequestMapping("/submit")
public String handle(@RequestParam Foo selectedFoo) {
}

This assumes you have a converter from String to Foo. Otherwise you can simply use String as argument.

If you want to get the whole form submitted to a javabean, make a bean with fields named exactly the same as the fields in your html form, and pass it as argument to the handling method.

丶视觉 2024-12-14 17:01:31

I think this tutorial will help you:

http://www.mkyong.com/spring-mvc/spring-mvc-dropdown-box-example/

Spring MVC 3 example:

http://www.roseindia.net/tutorial/spring/spring3/web/spring-3-mvc-form-example.html

Just combine the logic from these 2 examples and you will understand hoe to do it right.

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