Persistence interface

一个接口,用于涵盖可能的持久性机制类型。

签名

export interface Persistence 

属性

属性 类型 说明
type “SESSION”|“LOCAL”|“无” 持久化的类型。-“SESSION”用于临时保留,例如 sessionStorage。-“LOCAL”用于长期持久性,例如 localStorageIndexedDB。-“无”用于内存中或无法持久化

Persistence.type

持久化的类型。-“SESSION”用于临时持久性存储,例如 sessionStorage。-“LOCAL”用于长期持久性,例如 localStorageIndexedDB。-“无”用于内存中或无法持久化

签名

readonly type: 'SESSION' | 'LOCAL' | 'NONE';