问题是将JavaScript arraylist与RequestParam批注绑定在一起。
如果没有nokDataList,我的表单数据就可以正常工作。
nokInfoDatas是一个javascript数组,在控制台中看起来如下:
javascript - 如何使用FormData将JavaScript数组与@RequestParam绑定(bind)?-LMLPHP

var requestData = JSON.stringify(nokInfoDatas);
    console.log("nokInfoDatas");
    console.log(nokInfoDatas);
    console.log("requestData");
    console.log(requestData);
var fd = new FormData();
        fd.append('photo', file);
        fd.append('testId', testId);
        fd.append('nokDataList', nokInfoDatas);
var ajaxData = {
            type: "POST",
            data: fd,
            processData : false,
            contentType : false,
            url: sendUrl,
            headers: headersData,
    };


后端:

public @ResponseBody String answer(HttpServletRequest request,
            @RequestParam(value = "photo") MultipartFile photo,
            @RequestParam(value = "testId") String testId,
        @RequestParam(value = "nokDataList") List<NokDataDTO> nokInfoDtos
            )

最佳答案

您可以尝试如下操作:

使用您的JSON数据(requestData)创建Blob

var requestData = JSON.stringify(nokInfoDatas);
var fd = new FormData();
fd.append('photo', file);
fd.append('testId', testId);
fd.append('nokDataList', new Blob([requestData], {
  type: "application/json"
}));


将@RequestParam更改为@RequestPart以解析具有多部分的JSON。

public @ResponseBody String answer(HttpServletRequest request,
       @RequestParam(value = "photo") MultipartFile photo,
       @RequestParam(value = "testId") String testId,
       @RequestPart(value = "nokDataList") List<NokDataDTO> nokInfoDtos
      )

10-07 23:52