Spring MVC 3中如何获取组合的选定值?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在您提交的控制器中获取它们。例如:
这假设您有一个从
String
到Foo
的转换器。否则,您可以简单地使用String
作为参数。如果您想将整个表单提交给 javabean,请创建一个 bean,其字段名称与 html 表单中的字段完全相同,并将其作为参数传递给处理方法。
You can obtain them in the controller to which you submit. For example:
This assumes you have a converter from
String
toFoo
. Otherwise you can simply useString
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.
我认为本教程会对您有所帮助:
http://www.mkyong.com/spring-mvc/spring-mvc-dropdown-box-example/" rel="nofollow">http://www.mkyong.com mkyong.com/spring-mvc/spring-mvc-dropdown-box-example/
Spring MVC 3 示例:
http://www.roseindia.net/tutorial /spring/spring3/web/spring-3-mvc-form-example.html
只需结合这两个示例的逻辑,您就会明白如何正确执行此操作。
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.