云开发上传文件出现问题
- 当前 Bug 的表现(可附上截图)
- 预期表现
下午的时候还好好的,目前上传图片,上传成功。(应该算成功吧?云存储也可以看到地址,只不过,大小却是0b)但一个字节都没有?
- 复现代码
wx.cloud.uploadFile({ cloudPath, filePath: filePath[i], success: res => { app.globalData.fileID = res.fileID; app.globalData.cloudPath = cloudPath; app.globalData.imagePath = filePath; fileIdPath.push(res.fileID); console.log( '上传成功' ) }, fail: e => { console.error( "[上传文件] 失败:" , e); wx.showToast({ icon: "none" , title: "上传图片失败" }); }, |