简体   繁体   English

使用 JS Fetch API 上传时负载太大错误 (413)。 通过邮递员工作正常

[英]Payload too large error (413) when uploading using JS Fetch API. Works fine via Postman

I have a multipart upload API that works flawlessly when I upload a file via Postman.我有一个分段上传 API,当我通过 Postman 上传文件时,它可以完美运行。 However, when I upload via the same API but using Fetch API, I get 413 error.但是,当我通过相同的 API 上传但使用 Fetch API 时,出现 413 错误。

I tried the solution given here but it did not work.我尝试了此处给出的解决方案但没有奏效。

My JS code is as follows -我的JS代码如下 -

async function uploadAudio(formElements) {

    const formData = new FormData();
    const file = fileUploadField.files[0];
    formData.append("file", file);

    console.log("Name: " + file.name); // Prints the correct file name
    console.log("Size: " + file.size); // Prints the correct size (which is < than what is set server side)

    const options = {
          method: 'POST',
          body: formData,
          headers: {
            'Content-Type': 'multipart/form-data',
            'Accept': 'application/json',
            'Authorization': 'Bearer ' + authTokenArr[0]
          }
        };

    const response = await fetch(base_url + "/audio/file", options);
    const data = await response.json();

    if (response.ok) {
        handleSuccess(data);
    } else {
        handleFail(data);
    }
} 

application.properties file - application.properties文件 -

# max file size
spring.servlet.multipart.max-file-size=10MB
# max request size
spring.servlet.multipart.max-request-size=10MB 

REST controller - REST 控制器 -

@PostMapping("file", produces = [ProduceTypes.JSON])
    fun uploadAudio(@RequestParam("file") file: MultipartFile,
                      @RequestHeader (name="Authorization") token: String): ResponseEntity<MutableMap<String, Any>> {

        val user: User = userService.getUserDetailsByToken(token)

        val body: MutableMap<String, Any> = LinkedHashMap()
        body["status"] = ApiStatus.UPLOADED
        body["fileId"] = podcastFileService.uploadFileToB2(user, file)

        return ResponseEntity(body, HttpStatus.CREATED)
    }

Here is my server side log -这是我的服务器端日志 -

2020-09-03 18:56:02.288 DEBUG 40716 --- [nio-8080-exec-7] o.s.web.servlet.DispatcherServlet        : POST "/audio/file", parameters={}
2020-09-03 18:56:02.293 DEBUG 40716 --- [nio-8080-exec-7] .m.m.a.ExceptionHandlerExceptionResolver : Using @ExceptionHandler com.krtkush.audiotime.globalexceptions.GlobalExceptionHandler#handleMultipartException(MultipartException)
2020-09-03 18:56:02.356 DEBUG 40716 --- [nio-8080-exec-7] o.s.w.s.m.m.a.HttpEntityMethodProcessor  : Using 'application/json', given [application/json] and supported [application/json, application/*+json, application/json, application/*+json]
2020-09-03 18:56:02.357 DEBUG 40716 --- [nio-8080-exec-7] o.s.w.s.m.m.a.HttpEntityMethodProcessor  : Writing [{timestamp=2020-09-03T18:56:02.297867, message=Maximum file size acceptable is 10MB}]
2020-09-03 18:56:02.364 DEBUG 40716 --- [nio-8080-exec-7] .m.m.a.ExceptionHandlerExceptionResolver : Resolved [org.springframework.web.multipart.MultipartException: Failed to parse multipart servlet request; nested exception is java.io.IOException: org.apache.tomcat.util.http.fileupload.FileUploadException: the request was rejected because no multipart boundary was found]
2020-09-03 18:56:02.364 DEBUG 40716 --- [nio-8080-exec-7] o.s.web.servlet.DispatcherServlet        : Completed 413 PAYLOAD_TOO_LARGE

Why would there be a size problem when the API is working fine via Postman and even when uploaded using mustache template with a non-REST controller.当 API 通过 Postman 正常工作时,甚至使用带有非 REST 控制器的mustache模板上传时,为什么会出现大小问题。

Turns out 'Content-Type': 'multipart/form-data' was the problem.结果是'Content-Type': 'multipart/form-data'是问题所在。 It worked when I removed it.当我删除它时它起作用了。 Comment by @Kostiantyn here helped me out. @Kostiantyn评论在这里帮助了我。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM