赞
踩
1. 使用 FormData 对象
FormData是一个用于创建表单数据的 API,可用于发送包含文件和其他表单数据的multipart/form-data请求。这是处理文件上传的常用方法。通过FormData对象,可以将文件数据添加到表单中,然后使用 Axios 的post或put方法发送请求。
const axios = require('axios'); const fileInput = document.querySelector('#fileInput'); const file = fileInput.files[0]; const formData = new FormData(); formData.append('file', file); axios.post('/upload', formData, { headers: { 'Content-Type': 'multipart/form-data' } }).then(response => { console.log('上传成功', response.data); }).catch(error => { console.error('上传失败', error); });
onChange={async (info: any) => { const formData = new FormData(); const fileList = info.fileList; fileList.forEach((file: any) => { formData.append("file", file.originFileObj); }); localStorage.setItem('fileName', fileList[0].name) axios.post('http://xxx.xxx.x.xx:8000/upload', formData, { headers: { 'Content-Type': 'multipart/form-data' } }) .then(res => { if (res) { } }) }}
除了使用FormData
,你还可以通过在 URL 参数中指定文件名的方式上传文件。这种方法适用于后端期望文件名直接出现在 URL 中的情况。
const axios = require('axios');
const fileInput = document.querySelector('#fileInput');
const file = fileInput.files[0];
axios.post('/upload', file, {
params: {
fileName: file.name
}
}).then(response => {
console.log('上传成功', response.data);
}).catch(error => {
console.error('上传失败', error);
});
这种方法将文件转换成 Base64 编码的字符串,然后通过普通的 JSON 格式发送给服务器。这种方式适用于较小的文件,因为 Base64 编码会增加数据大小。
const axios = require('axios'); const fileInput = document.querySelector('#fileInput'); const file = fileInput.files[0]; const reader = new FileReader(); reader.onload = function(event) { const base64Data = event.target.result.split(',')[1]; axios.post('/upload', { file: base64Data }).then(response => { console.log('上传成功', response.data); }).catch(error => { console.error('上传失败', error); }); }; reader.readAsDataURL(file);
可以通过 CreateObjectURL 把文件对象转成 Blob URL,然后作为 Axios 请求的数据发送。
const file = document.getElementById('file').files[0];
const blobUrl = URL.createObjectURL(file);
axios.post('/upload', blobUrl, {
headers: {
'Content-Type': 'multipart/form-data'
}
});
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。