代码片段:wx.downloadFile({
url: that.data.action.video, // 下载视频路径
filePath: filepath,
header: {
'content-type': 'application/json'
},
success: res => {
console.log("保存视频",res);
var url = res.filePath
wx.saveVideoToPhotosAlbum({
filePath: url,
success(res) {
console.log(res);
that.savepictures(0)
},
fail: error => {
console.log("保存失败原因",error);
wx.showToast({
title: '视频保存失败',
icon: 'none'
})
that.savepictures(0)
}
})
},
fail: error => {
console.log(error)
wx.showToast({
title: '视频太大无法保存',
icon: 'none'
})
that.savepictures(0)
}
})
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
我也是这毛病,调试、beta、预览都OK,但是一旦审核通过,发布出去就不行了,最后保存到手机相册就失败,也不报其他错。
我试了下别人的,不知道为什么他的小程序可以下载成功,不知道是不是早起的版本库问题。
我回头试试楼上的隐私协议说法。
我也遇到了,同样的问题,苹果能download下载的了但是保存不到系统相册,其他安卓什么的都可以。。。您解决了嘛?怎么解决的
后台=>设置=>更新下用户隐私协议再试试