sharefile(e){
var i = e.currentTarget.dataset.index
wx.cloud.downloadFile({
fileID:this.data.list[i].fileID,
success(res){
// 下载完成后转发
console.log(res.tempFilePath)
wx.shareFileMessage({
filePath: res.tempFilePath,
success(res){
console.log(res)
},
fail(err){
console.log(err)
}
})
}
})
},
一开始是可以用的,后来就没反应了,既不报错也不运行,写成了promise风格之后报错wx.shareFileMessage is not a function. 不要问我要什么代码片段,因为片段又可以运行了,如果是我代码的问题,最开始为什么可以运行呢》?