pc小程序wx.cloud.uploadFile()bug
开发工具和手机都没有问题,就是pc测试版小程序上传图片不成功。
var updatimg=function(opt){
let {cpath,path}=opt;
console.log(‘updatimg:’,opt)
var ret=new Promise((re,rj)=>{
wx.cloud.uploadFile({
cloudPath: cpath,
filePath: path, // 文件路径
success: res => {
// get resource ID
re(res.fileID)
console.log(“上传成功:”, res.fileID)
},
fail: err => {
// handle error
rj(-1)
}
})
})
return ret;
}