我也是这毛病,调试、beta、预览都OK,但是一旦审核通过,发布出去就不行了,最后保存到手机相册就失败,也不报其他错。 我试了下别人的,不知道为什么他的小程序可以下载成功,不知道是不是早起的版本库问题。 我回头试试楼上的隐私协议说法。
wx.saveVideoToPhotosAlbum在IOS环境中报错,但安卓或者调试器都能正常保存?代码片段: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) } }) [图片]
2023-08-19