无法在 'FormData' 上执行 'append':参数 2 不是 'Blob' 类型
Failed to execute 'append' on 'FormData': parameter 2 is not of type 'Blob'
我有一个允许用户上传多张图片的上传器。为了只创建或更新他想要的图像 add/change,我更新了一个如下所示的对象:
{main: Blob, "1": Blob, "2":Blob}
所以如果以后只需要更新“1”,发送的对象将只包含
{"1": Blob}
单击保存时,它会触发一个函数,该函数应该将图像附加到 formData()。遗憾的是 formData 永远不会更新。我有以下错误:
Failed to execute 'append' on 'FormData': parameter 2 is not of type 'Blob'.
export async function uploadImages(files, userId) {
try {
const images = new FormData();
files.main && images.append("image", files.main, "main");
files[1] && images.append("image", files[1], "1");
files[2] && images.append("image", files[2], "2");
const res = await ax.post(process.env.SERVER_URL + "/upload-images", {
images,
userId,
});
return "success"
} catch (err) {
return "error"
}
}
如何解决这个问题?谢谢!
export async function uploadImages(files, userId) {
try {
const images = new FormData();
for(const file of files){
images.append("image", file);
}
const res = await ax.post(process.env.SERVER_URL + "/upload-images", {
images,
userId,
});
return "success"
} catch (err) {
return "error"
}
}
您应该无法在控制台中看到 FormData object 内容,因为它不可序列化。您可以改为检查请求负载,检查浏览器开发工具中的“网络”选项卡,找到您的请求并查看“Headers”选项卡底部以查看“FormData”日志。你会看到这样的东西:
此外,您应该在 axios 中将 header“Content-Type”设置为“multipart/form-data”。
这是工作示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<input type="file" multiple id="filepicker" />
<button id="send">Send</button>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.20.0/axios.min.js"></script>
<script>
const myformData = new FormData();
document
.querySelector('#filepicker')
.addEventListener('change', function (event) {
const { files } = event.target;
Object.values(files).forEach(function (file, index) {
myformData.append(index, file);
});
});
document.querySelector('#send').addEventListener('click', function () {
axios({
method: 'post',
url: 'http://google.com',
data: myformData,
headers: { 'Content-Type': 'multipart/form-data' },
})
.then((response) => console.log(response))
.catch((err) => console.log(err));
});
</script>
</body>
</html>
您必须将扩展名与名称一起传递
files[1] && images.append("image", files[1], "custom-name.jpg");
我在我的 React Native 应用程序中遇到了这个问题。为了解决它,我必须将图像路径转换为 blob。下面给出了我的句柄上传功能的代码。
const handleUpload = async () => {
if (selectedImage.localUri !== '') {
const image_uri = Platform.OS === 'ios' ? selectedImage.localUri.replace('file://', '') : selectedImage.localUri;
const response = await fetch(image_uri);
const blob = await response.blob();
const formData = new FormData();
formData.append('image', blob, "xray_image.jpg");
setLoading(true);
axios.post("https://...", formData)
.then((result) => {
console.log(result);
})
.catch((err) => {
console.log(err);
});
} else {
console.log("Select a file error message");
}
};
我有一个允许用户上传多张图片的上传器。为了只创建或更新他想要的图像 add/change,我更新了一个如下所示的对象:
{main: Blob, "1": Blob, "2":Blob}
所以如果以后只需要更新“1”,发送的对象将只包含
{"1": Blob}
单击保存时,它会触发一个函数,该函数应该将图像附加到 formData()。遗憾的是 formData 永远不会更新。我有以下错误:
Failed to execute 'append' on 'FormData': parameter 2 is not of type 'Blob'.
export async function uploadImages(files, userId) {
try {
const images = new FormData();
files.main && images.append("image", files.main, "main");
files[1] && images.append("image", files[1], "1");
files[2] && images.append("image", files[2], "2");
const res = await ax.post(process.env.SERVER_URL + "/upload-images", {
images,
userId,
});
return "success"
} catch (err) {
return "error"
}
}
如何解决这个问题?谢谢!
export async function uploadImages(files, userId) {
try {
const images = new FormData();
for(const file of files){
images.append("image", file);
}
const res = await ax.post(process.env.SERVER_URL + "/upload-images", {
images,
userId,
});
return "success"
} catch (err) {
return "error"
}
}
您应该无法在控制台中看到 FormData object 内容,因为它不可序列化。您可以改为检查请求负载,检查浏览器开发工具中的“网络”选项卡,找到您的请求并查看“Headers”选项卡底部以查看“FormData”日志。你会看到这样的东西:
此外,您应该在 axios 中将 header“Content-Type”设置为“multipart/form-data”。 这是工作示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<input type="file" multiple id="filepicker" />
<button id="send">Send</button>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.20.0/axios.min.js"></script>
<script>
const myformData = new FormData();
document
.querySelector('#filepicker')
.addEventListener('change', function (event) {
const { files } = event.target;
Object.values(files).forEach(function (file, index) {
myformData.append(index, file);
});
});
document.querySelector('#send').addEventListener('click', function () {
axios({
method: 'post',
url: 'http://google.com',
data: myformData,
headers: { 'Content-Type': 'multipart/form-data' },
})
.then((response) => console.log(response))
.catch((err) => console.log(err));
});
</script>
</body>
</html>
您必须将扩展名与名称一起传递
files[1] && images.append("image", files[1], "custom-name.jpg");
我在我的 React Native 应用程序中遇到了这个问题。为了解决它,我必须将图像路径转换为 blob。下面给出了我的句柄上传功能的代码。
const handleUpload = async () => {
if (selectedImage.localUri !== '') {
const image_uri = Platform.OS === 'ios' ? selectedImage.localUri.replace('file://', '') : selectedImage.localUri;
const response = await fetch(image_uri);
const blob = await response.blob();
const formData = new FormData();
formData.append('image', blob, "xray_image.jpg");
setLoading(true);
axios.post("https://...", formData)
.then((result) => {
console.log(result);
})
.catch((err) => {
console.log(err);
});
} else {
console.log("Select a file error message");
}
};