云函数执行上传的临时路径 event.file.path 无法使用,提示不存在文件路径
wx.cloud.uploadFile({
cloudPath: 'example.png', // 上传至云端的路径
filePath: '', // 小程序临时文件路径 ??? 这里的路径如何处理呢? 文档的demo无法执行,想要获得一个可以正常使用的例子
success: res => {
// 返回文件 ID
console.log(res.fileID)
},
fail: console.error
})