我试图在Spring使用radiobutton。
我已经按照本教程进行了正常工作:
http://www.mkyong.com/spring-mvc/spring-mvc-radiobutton-and-radiobuttons-example/
但是,本教程使用的是Spring 2.5,我想在Spring 3.0中是否还有其他方法可以做到这一点。
在上面的教程中,需要自定义模型才能存储单选按钮值。
那么有没有办法将单选按钮值直接传递回控制器,而不是通过自定义模型?
控制器中有这样的东西:
public void handleExport(@ModelAttribute("exportType") String exportTye)
虽然exportType是单选按钮值。
非常感谢!
答案 0 :(得分:0)
我相信您可以使用@RequestParam访问它:
<form:radiobutton path="exportType" value="MyType"/>
public void handleExport(@RequestParam("exportType") String exportTye)