发送文件
getFn(file) {
const formdata=new FormData();
formdata.append('file',file);
return this.$axios({
method: "post",
url: "/upload",
data: formdata,
headers: {
"Content-Type": "application/x-www-form-urlencoded;"
}
}).then(res=> {
console.log(res, 78);
}).
}
利用promisep批量发送文件
sendFile() {
const lists = [getFn(file1), getFn(file2), getFn(file3)]
promise.all(lists)
}
问题 ?点击终止如何停止发送所有文件
点击终止停止发送所有文件
closeFile() {
???
},
在axios里 添加了中断请求的方法
点击终止停止发送所有文件