2***@qq.com
2***@qq.com
  • 发布:2020-11-28 09:31
  • 更新:2020-12-03 14:56
  • 阅读:628

uniapp 微信开发工具调试 多文件上传bug

分类:uni-app

uniapp 利用uni.uploadfile 的files 模式上传多文件。遇到bug。
如果不填写filepath 和 name 就提示filepath 和 name undefined
如果填写了那么files 就无效了!
不知道大家如何解决的
我贴上代码

uni.uploadFile({
url:this.$baseurl+'/api/User/fankui',
fileType:"image",
files:this.imgary1,
filePath:this.imgary[0],
name:'file',
// header: {"Content-Type": "multipart/form-data"},
formData:{
uid: this.userinfo.id,
typeindex: this.typeindex,
info: this.info,
nickname: this.nickname,
mobile:this.mobile
},
success:(res) => {
let data=JSON.parse(res.data)
if (data.status==1){
// 如果反馈成功了
uni.redirectTo({
url:'./sugsuc'
})
}else{
uni.showToast({
title:data.msg,
icon:'none'
})
}
},
fail: (err) => {
console.log(err)
uni.showToast({
title:'提交错误',
icon:'none'
})
}
})

2020-11-28 09:31 负责人:无 分享
已邀请:
DCloud_UNI_GSQ

DCloud_UNI_GSQ

填不填写在微信上都不支持files,文档已有说明
如果有需要,可以到微信小程序社区提一下,人多了也许会采纳。

该问题目前已经被锁定, 无法添加新回复