实现小程序 通过发送表单数据 向后端发送多图片+文本内容
// 输入框里面的文字
const content = JSON.stringify(this.value)
// 用户唯一标识 时间戳 + token
const timestamp = Date.now() + uni.getStorageSync('token')
console.log(timestamp)
const text = JSON.stringify(timestamp)
const photos = this.fileList
const newList = []
for(let i = 0; i < photos.length; i++ ){
const index = i
console.log(i,'下标')
newList.push(uni.uploadFile({
url: 'http://192.168.0.102:8081/addPostTextImg', //仅为示例,非真实的接口地址
filePath: photos[i],
name: 'file',
header: {
// 'Content-Type': 'multipart/form-data',
Authorization:uni.getStorageSync('token')
},
formData: {
text: text,
index:index,
content:content
},
}))
}