var formData = new FormData();
formData.append("File", this.File1);
this.axios({
url:'/user/test',
method: 'post',
params: {video: formData},
headers: {
'Content-Type': 'multipart/form-data'
}
}).then(respanse=>{
console.log(respanse);
})
后台想通过url接受参数 没有使用data
发送请求的时候,传递过去的是空
但是单独console formData.get('File')的时候 是有完整的file对象的
没头脑了 求助
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…