Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
574 views
in Technique[技术] by (71.8m points)

ionic4 - ionic 4 capacitor storage gets clear when reopen the app in ios

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...