java-Spring MVC中作为RequestParam的对象列表

前端之家收集整理的这篇文章主要介绍了java-Spring MVC中作为RequestParam的对象列表 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想通过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

class MyObjects {
    private List<MyObject> myList;
    ...
}

public String action (@modelattribute MyObjects myObjects,Model model) { ... }
原文链接:https://www.f2er.com/spring/531715.html

猜你在找的Spring相关文章