您的当前位置:首页正文

解决Current request is not a multipart request

2024-11-28 来源:个人技术集锦

文件上传时;前端因为不使用form表单提交信息,所以后端报Current request is not a multipart request该错,因为不使用form表单提交数据时,前端没有默认content-type为multipart/form-data,所以就会报个错,如果在ajax请求中加上contentType:‘multipart/form-data’ 时又会有其他错。
解决:1.可加上form表单提交数据
2.前端js使用FormData类**(推荐)**

显示全文