如果我在< form>中有
HTML像这样:
<input type="text" value="someValue1" name="myValues"/> <input type="text" value="someValue2" name="myValues"/> <input type="text" value="someValue3" name="myValues"/> <input type="text" value="someValue4" name="myValues"/>
String[] values = request.getParameterValues("myValues");
如何使用Spring MVC做类似的事情?
解决方法
参数作为参数传递给绑定到控制器的方法
@RequestMapping(value = "/foo",method = RequestMethod.POST) // or GET public String foo(@RequestParam("myValues") String[] myValues) { // Processing return "view"; }