wx.uploadFile({
url: Api.port.uploadImage,
filePath: tempFilePaths,
name: 'file',
formData: {
token: user_token,
type: 1
},
success(res) {
wx.hideLoading();
console.log("uploadImage", res.data);
},
fail(res) {
console.log("fail", res)
wx.hideLoading()
}
})
上面去除了业务相关的代码,保留了打印,真机调试查看Preview没有结果返回,过了比较长时间后,fail返回uploadFile:fail interrupted,而且是只发生在很少部分人身上,有个用户反馈,除了我们的小程序,其他小程序上传图片也遇到了同样的问题
试下你们那边能否复现