📅  最后修改于: 2022-03-11 15:04:10.688000             🧑  作者: Mango
const form = new FormData();
form.append("form-field1", value1);
form.append("form-field2", value2);
const res = await axios.post({'http://www.yourserver.com/upload',
form,
headers: {
'Content-Type': `multipart/form-data; boundary=${form._boundary}`,
},
});