我想通过POST向操作发送对象ID列表(由用户选择复选框生成),因此可以获取java.util.List< MyObject>.使用MyObjectEditor进行转换.
那么,有可能这样做吗?
@InitBinder
public void initBinder (WebDataBinder binder) {
binder.registerCustomEditor(MyObject.class,new MyObjectEditor());
}
@RequestMapping (value = "",method = RequestMethod.POST)
public String action (@RequestParam List<MyObject> myList,Model model) {
// more stuff here
}
而我的POST将是这样的:
myList[0] = 12
myList[1] = 15
myList[2] = 7
谢谢!
最佳答案
@RequestParam不支持这种绑定,因此您必须使用@modelattribute:
原文链接:https://www.f2er.com/spring/531715.htmlclass MyObjects {
private List<MyObject> myList;
...
}
public String action (@modelattribute MyObjects myObjects,Model model) { ... }