- 上传图片到云存储失败,求教?
程序直接进入了fail失败里面.这是为何? 代码如下: doUpload: function (e) { // 选择图片 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) }, fail: e => { console.error('[上传文件] 失败:', e) wx.showToast({ icon: 'none', title: '上传失败', }) }, complete: () => { wx.hideLoading() } }) }, })
2021-02-26 - wx.cloud.uploadFile上传图片到云存储为什么不行?
模板那里可以的,一摸一样复制过来就不行了 求教哪里不对? 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 // wx.navigateTo({ // url: '../storageConsole/storageConsole' // }) }, // fail: e => { // console.error('[上传文件] 失败:', e) // wx.showToast({ // icon: 'none', // title: '上传失败', // }) // }, complete: () => { wx.hideLoading() } }) }, // fail: e => { // console.error(e) // } }) },
2021-02-26 - image为什么无法显示图片?
[渲染层网络层错误] Failed to load local image resource /pages/ts/img/1.png the server responded with a status of 500 (HTTP/1.1 500 Internal Server Error) data: { src:'../../../img/1.png', <image src="{{src}}"></image> 路劲都是对的,就是不显示报错
2021-02-25