Board logo

标题: Form表单传递List数组属性到后台对象中(1) [打印本页]

作者: look_w    时间: 2019-5-13 09:57     标题: 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>




欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/) Powered by Discuz! 7.0.0