使用wx.cloud.uploadFile报错wx is not defined?但是又能成功上传?
代码如下 wx.cloud.uploadFile({
cloudPath: this.data.name + '.jpg',//云存储地址
filePath: this.data.img,//本地文件地址
success: res => {
console.log('上传成功:', res.fileID)
this.setData({
img: res.fileID,
})
}
})
这不是挺正常的写法吗,但是我在两个页面用都会报错,然而又会返回上传成功的结果 [图片] wx的其他api都没问题,就用uploadFile的时候报错,虽然不影响正常运行吧,就是想整明白