因此,这是我的代码和即时通讯试图发布一个文件到一个网址,但我不知道我做错了什么。
const onFileUpload =()=〉{
// Create an object of formData
const formData = new FormData();
// Update the formData object
formData.append(
'file',
selectedimage,
);
// Details of the uploaded file
console.log(selectedimage);
// Send formData object
axios.post("http://localhost:3000/upload", formData)
.then(res => {
console.log(res.statusText)
})
1条答案
按热度按时间evrscar21#
好吧,所以我相信,我希望它显示在标题选项卡的表单数据是在有效载荷选项卡现在。也许这是某种更新。这可能会帮助像我这样的新手。