Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以像这样将 akita persistState 功能与电容器存储插件结合起来?
persistState({ storage: Storage});
storage秋田persistState方法中的编号对象是类型PersistStateStorage,即
storage
persistState
PersistStateStorage
export interface PersistStateStorage { getItem(key: string): MaybeAsync; setItem(key: string, value: any): MaybeAsync; clear(): void; }
Capacitor Storage 的 TypeStoragePlugin具有 get()、set() 方法。
StoragePlugin