// 上传图片按钮
chooseimg(res){
console.log(res)
// 选择一张图片
wx.chooseImage({
count: 1,
sizeType: ['compressed'],
sourceType: ['album', 'camera'],
success:(res)=> {
// tempFilePath可以作为img标签的src属性显示图片
const tempFilePath = res.tempFilePaths[0]
console.log(res.tempFilePaths[0])
// this.setData({tempFilePath:res.tempFilePaths[0]})
// 上传图片
wx.cloud.uploadFile({
cloudPath: 'example.jpg',
filePath: 'tempFilePath', // 文件路径
}).then(res => {
console.log(res.fileID)
}).catch(error => {
})
}
})
},
consloe显示如下:
http://tmp/wx7e465c3765150abb.o6zAJsywolYtg3-S5Ix6gz2_NcTM.pPsopBdTwW9Accabe43eac786a2cdf57e325a61a8e71.jpg
uploadFile:fail createUploadTask:fail file not found
只要把filePath: 'tempFilePath’引号去掉就可以了,微信小程序云开发爱好者Q裙:232884371