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) {
uni.showToast({ title: '下载失败', icon: 'none' })
}
});
看了文档 ,说 ios 需要配置filePath 的 指定文件下载后存储的路径 (本地路径) 哪位大神知道
0 个回复