我有一个带有动态数量的<input type='file' />
文件和文本框的 html 表单<input type='text' />
。我怎样才能在球衣后端获取所有这些数据?..我已经为这样的静态输入数量完成了它:
@POST
@Path("post")
@Consumes("multipart/form-data")
public Response postCategory(@FormDataParam("text1") String text1,FormDataMultiPart fm,
@FormDataParam("file1") InputStream file1,
@FormDataParam("text2") String text2,
@FormDataParam("file2") InputStream file2) {
System.out.println("CategoryService.postCategory()");
System.out.println("text1:" + text1);
System.out.println("text2:" + text2);
}