目标
使用Vue框架和axios上传文件问题
1、axios上传文件,服务端接收数据为空2、客户端报错: Error: Request failed with status code 400
问题描述
上传文件时发现上传至服务端数据为空 doUpload(file) {
if (file) {
let fd = new FormData();
fd.append("file", file);
axios({
method: "post",
url: "http://127.0.0.1:8888/api/UploadFile",
headers: {
"content-type": "multipart/form-data",
},
data: {
fd,
},
}).then((response) => {
console.log