edu/app/src/utils/file.ts

22 lines
603 B
TypeScript
Raw Normal View History

2022-09-08 08:28:56 +00:00
export async function saveImageToPhotosAlbum(url: string) {
if (!url) return uni.$u.$toast('图片不存在')
//#ifdef H5
uni.$u.$toast('长按图片保存')
//#endif
try {
const res: any = await uni.downloadFile({ url, timeout: 10000 })
await uni.saveImageToPhotosAlbum({
filePath: res.tempFilePath
})
uni.showToast({
title: '保存成功',
icon: 'success'
})
} catch (error: any) {
uni.showToast({
title: error.errMsg || '保存失败',
icon: 'none'
})
}
}