wx.downloadFile({
url: "xxxxxxx.mp4",
header: {
'content-type': 'video/mp4'
},
success (ress) {
if (ress.statusCode === 200) {
wx.saveVideoToPhotosAlbum({ //保存到相册
filePath: ress.tempFilePath,
success(res) {
wx.showToast({
title: '保存成功',
icon: 'none',
duration: 2000
})
},
fail (err) {
wx.showToast({
title: '保存失败',
icon: 'none',
duration: 2000
})
}
})
}
}
})
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)