revert 删除saveImage方法的catch,排查生产环境ios不能保存图片的原因
This commit is contained in:
yezian 2024-03-23 15:29:03 +08:00
parent dbcd874261
commit 965a727131
1 changed files with 13 additions and 8 deletions

View File

@ -7,14 +7,19 @@ export default async function saveImage(uri) {
if (permission.granted) { if (permission.granted) {
const timestamp = new Date().getTime(); const timestamp = new Date().getTime();
const fileUri = FileSystem.cacheDirectory + `${timestamp}.png`; const fileUri = FileSystem.cacheDirectory + `${timestamp}.png`;
const res = await FileSystem.downloadAsync(uri, fileUri); try {
await MediaLibrary.saveToLibraryAsync(res.uri); const res = await FileSystem.downloadAsync(uri, fileUri);
Toast.show({ await MediaLibrary.saveToLibraryAsync(res.uri);
type: "success", Toast.show({
text1: "已保存到相册", type: "success",
topOffset: 60, text1: "已保存到相册",
}); topOffset: 60,
return true; });
return true;
} catch (err) {
console.error("FS Err: ", err);
return false;
}
} else { } else {
Toast.show({ Toast.show({
type: "error", type: "error",