首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

Form表单传递List数组属性到后台对象中(1)

Form表单传递List数组属性到后台对象中(1)

第一层属性的List





后台有一个对象 User ,结构如下:

    public class User{
     
     private String username;
     
     
     
     private List<PhotoDo> photo;
     
     
     
     ..get ....set.....
     
     
     
    }
     
     
     
    public class PhotoDo{
     
     private String id;
     
     
     
     private String name;
     
     
     
      ...get...set...
     
    }

Controller中接受方法 getUser




    @reqeustMapping("/getUser")
     
    public void getUser(User user){
     
     
     
    ...实现方法...
     
     
     
    }
     

前台Form这么写:

    <form>
     
         <input type="text" name="username" aciton="..">
     
     
     
         <input type="text" name="photo[0].id">
     
         <input type="text" name="photo[0].name">
     
         <input type="text" name="photo[1].id">
     
         <input type="text" name="photo[1].name">
     
         <input type="text" name="photo[2].id">
     
         <input type="text" name="photo[2].name">
     
    </form>
返回列表