Form表单如何传递List数组对象到后台的解决办法(转)

举例说明:

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

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>

========================================分割线

上一篇:1.1.8 怎样在Word的页眉中插入一级标题


下一篇:springMVC通过ajax传递参数list对象或传递数组对象到后台