let downloadTask = uni.downloadFile({
url: item.videoUrl,
success: (res) => {
if (res.statusCode === 200) {
console.log('下载成功',res);
uni.saveVideoToPhotosAlbum({
filePath: res.tempFilePath ,
success: ()=> {
uni.showToast({ title: '下载成功', icon: 'none' })
},
fail: ()=> {
uni.showToast({ title: '下载失败', icon: 'none' })
},
})
}
},
fail(err) {
item['showPercent'] = false
uni.showToast({ title: '下载失败', icon: 'none' })
}
});
看了文档,说需要配置filePath 指定文件下载后存储的路径 (本地路径),怎么配置呢,哪位大神知道
yao的是人生 (作者)
部分ios机型可以下载成功,部分ios机型下载失败
2022-01-20 10:49
yao的是人生 (作者)
赋值哪个是我程序里面的变量,这里忽略掉
2022-01-20 10:50