Spring Boot Resolved [org.springframework.web.multipart.support.MissingServletRequestPartException: Required request part 'file' is not present]
IDEA报错信息
这个错误主要主要是指 后端通过@RequestParam("file")
注解标注的MultipartFile
参数并没有获取到文件参数为null
导致的
也就是你在请求体中没有找到file这个字段,所以这个错误就出现了
这里为了复现这个错误,我用postman发送一个post请求,并在请求体中没有找到file这个字段,然后就报了这个错误
解决方法
将@RequestParam("file")
中的file
跟请求体中的键值
保持一致就行了
然后就可以正常的上传文件了
在from表单中也是同理,因为input
的name
属性就是请求体中的键值,只要跟@RequestParam("file")
的file
保持一致就行了
例如:
<input type="file" name="file">
标签:Resolved,web,file,SpringBoot,RequestParam,multipart,体中,MissingServletRequestPart From: https://www.cnblogs.com/tobycold/p/17867856.html这样后端就可以拿到文件了