简体   繁体   中英

Akita persistState with capacitor Storage

Is it possible to combine akita persistState function with the capacitor Storage plugin like this?

persistState({ storage: Storage});

No. storage object in akita persistState method is of type PersistStateStorage , that is

export interface PersistStateStorage {
    getItem(key: string): MaybeAsync;
    setItem(key: string, value: any): MaybeAsync;
    clear(): void;
}

Capacitor Storage has is of Type StoragePlugin which has get(), set() methods on it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM