怎么接受表单上的数组
这是module 发个请求测试
@Ok("json")
public class TestModule {
@At("/test")
public User[] test(@Param("users") User[] users) {
return users;
}
@Test
public void send() throws Exception {
NutMap params = new NutMap().setv("user[111].name", "1").setv("users.name", "2");
String responseBody = Http.post("http://localhost:8080/test", params, 100000000);
System.err.println(responseBody);
}
}
然后获取到users为空