我想将多个图像文件发布到服务器。我已经使用了formData(formDta.append()),它只获取一张图像..它不拍摄多张图像
**#contained-button-file** is the input file ID
uploadCategoryImages = () => {
let formData = new FormData()
let imagefile = document.querySelector('#contained-button-file')
formData.append('image', imagefile.files[0])
api.post('/api/v1/addimage/category/3', formData)
.then(function (response) {
console.log(response)
})
.catch(function (error) {
alert(error)
})
}
答案 0 :(得分:2)
您当前的实现仅尝试附加0
的第一个元素(imagefile.files
)。
Array.prototype.forEach()可用于附加每个元素。
FormData.append()还需要一个名称作为它的第一个参数,然后是一个值,最后是一个可选的文件名。
请参见下面的实际示例。
[...imagefile.files].forEach(file => formData.append('image[]', file))
总体而言,您的uploadCategoryImages
函数可以简化为以下内容:
uploadCategoryImages = () => {
const data = new FormData()
const images = document.getElementById('contained-button-file').files
[...images].forEach(image => data.append('image[]', image))
api.post('/api/v1/addimage/category/3', data)
.then(console.log)
.catch(alert)
}
答案 1 :(得分:0)
是的FormData
字段可以一次分配一个文件,但您可以在FormData
中附加多个文件,如下所示
uploadCategoryImages = () => {
let formData = new FormData();
let imagefile = document.querySelector('#contained-button-file');
//loop through file elements and append file in formdata
for(var i = 0; i <imagefile.files.length; i++){
//you can name it anything here it will be image-0, image-1 like so
formData.append('image-'+ i, imagefile.files[i]);
}
api.post('/api/azz/a/ss/ss/ss/s/', formData)
.then(function (response)
{
console.log(response)
alert("Images have been uploaded Succesfully!!!");
})
.catch(function (error) {
alert(error)
})
}