wx.saveImageToPhotosAlbum无法保存图片到本地
现在小程序开放了保存图片到相册中,但是我在开发环境下调用该接口后 无反应,提示文件不存在,图片明明是绝对路径的
调用该函数后, 结果:相册中找不到这张保存的图片,并且返回的一些失败信息
Object {errMsg: "saveImageToPhotosAlbum:fail file not exist"}
aaa:function(){
wx.downloadFile({
url: this.data.img, //仅为示例,并非真实的资源
success: function (res) {
console.log(res)
var tempFilePath=res.tempFilePath
wx.saveImageToPhotosAlbum({
filePath: tempFilePath
})
}
})
官网说保存到相册要授权,我这边的已经授权过了。还是无法使用,,请问有人遇到过这个问题吗?