Recently I moved from Cordova to capacitor storage API. And I am having an issue like when we reopen app all stored data gets clear only in IOS but in android its works fine!
storage.service.ts
import { Plugins } from '@capacitor/core';
const { Storage } = Plugins;
public setStoragedata (keyname: string, data: any) {
return new Promise(resolve => {
Storage.set({key: keyname, value: JSON.stringify(data)})
.then(result => {resolve(result)})
.catch(e => resolve(false));
})
}
public getStoragedata (keyname: string) {
return new Promise(resolve => {
Storage.get({key: keyname})
.then(result => { resolve(result.value); })
.catch(e => resolve(false));
})
}
question from:
https://stackoverflow.com/questions/65950297/ionic-4-capacitor-storage-gets-clear-when-reopen-the-app-in-ios 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…