saveVideoToPhotosAlbum
saveToPhotosAlbum(tempFilePath) {
let vm = this;
thisdownloading = true;
vm.toast视频后台下载中...'
wx.downloadFile({
url: tempFilePath,
success: function (res) {
if (res.statusCode === 200) {
wx.playVoice({
filePath: res.tempFilePath
})
wx.saveVideoToPhotosAlbum({
filePath: res.tempFilePath
success: function (data) {
vm.downloading = false;
vm.toast视频下载成功请前往相册查看。
fail: function(res) {
vm.downloading = false;
vm.toast视频下载失败,请检查网络
})
fail: function () {
vm.downloading = false;
vm.toast视频下载失败,请检查网络
})