我有以下代码,其中我有一个数组的图像images
和上传该数组中的每个图像。代码工作正常,但我有一个问题,其中所有上传的图像都有相同的名称ex:storage/1671621889.png
.
const uploadData = async (data) => {
const attachment = []
const url = `http://127.0.0.1:8000/api/file/upload`
const config = {
headers: {
'content-type': 'multipart/form-data'
}
}
await Promise.all(images.map(async (file, index) => {
const imageData = new FormData()
imageData.append('file', file)
imageData.append('fileName', file?.name)
let result
axios.post(url, imageData, config)
.then(function(response) {
result = response.data.data.file
attachment.push(result)
})
}))
.then(() => {
submit(data, attachment)
})
}
我试着等你的要求,但那改变不了什么。
1条答案
按热度按时间carvr3hs1#
您已经将上载文件名定义为
file?.name
,如果您必须使其对于每个请求都是唯一的,您可以简单地附加索引。