你也可以试试,我就是用官方的demo试的,你也可以试试,是你进入到云里面的存储可以看到的,不是你上传的那张照片,你试试就知道了。
wx.cloud.uploadFile上传的图片不是你选中的图片!!!选择好图片上传后,在云后台的图片不是我选择的图片,请官方测试一下你们提供的DEMO // 上传图片 doUpload: function () { // 选择图片 wx.chooseImage({ count: 1, sizeType: ['compressed'], sourceType: ['album', 'camera'], success: function (res) { wx.showLoading({ title: '上传中', }) const filePath = res.tempFilePaths[0] // 上传图片 const cloudPath = 'my-image' + filePath.match(/\.[^.]+?$/)[0] wx.cloud.uploadFile({ cloudPath, filePath, success: res => { console.log('[上传文件] 成功:', res) app.globalData.fileID = res.fileID app.globalData.cloudPath = cloudPath app.globalData.imagePath = filePath this.setData({ text: 'changed data' }) // wx.navigateTo({ // url: '../storageConsole/storageConsole' // }) }, fail: e => { console.error('[上传文件] 失败:', e) wx.showToast({ icon: 'none', title: '上传失败', }) }, complete: () => { wx.hideLoading() } }) }, fail: e => { console.error(e) } }) },
2018-11-19 确实如楼主所说,官方可以用你们提供的demo试一下呀,我也遇到同样问题了!
云开发图片上传有问题,上传的一直是同一张图片- 当前 Bug 的表现(可附上截图) - 预期表现 - 复现路径 - 提供一个最简复现 Demo admin.js upd_mall_pic: function() { var that = this wx.chooseImage({ count: 1, sizeType: ['compressed'], sourceType: ['album', 'camera'], success(res) { console.log(res) const file_path = res.tempFilePaths[0]; app.upload_file('images/mall', 'mall_pic', file_path); } }) }, app.js upload_file: function (upload_path, file_name, file_path) { wx.showLoading({ title: '上传中' }) wx.cloud.uploadFile({ cloudPath: upload_path + '/' + file_name + file_path.match(/\.[^.]+?$/)[0], filePath: file_path, success: res => { wx.showToast({ icon: 'success', title: '上传成功!', }) }, fail: err => { wx.showToast({ icon: 'none', title: '上传失败!', }) }, complete: () => { wx.hideLoading() } }) } 这代码很正常,看不出毛病。但是上传到环境的文件存储,永远不是我选择的那一张图片。就算我把文件存储上传的图片删除,再重新上传,结果也是一样,不是我选择上传的图片。是我上上上次选择的图片,就像是没清除缓存一样。
2018-11-17