async handleDownload() {
// loading效果
await uni.showLoading({
title: '下载中',
})
// 将远程文件下载到小程序的内存中 tempFilePath
const result = await uni.downloadFile({ url: this.imgDetail.img })
const { tempFilePath } = result[1]
// 将小程序内存中的临时文件下载到本地
const result2 = await uni.saveImageToPhotosAlbum({ filePath: tempFilePath })
// 提示用户下载成功,关闭loading效果
uni.hideLoading()
await uni.showToast({
title: '下载成功',
})
}
uniapp下载图片功能
最新推荐文章于 2024-05-25 11:46:51 发布