openharmony 鸿蒙 storage-switch 2022-12-13 浏览 (817) Storage接口切换 FA模型接口Stage模型接口对应d.ts文件Stage模型对应接口 GetStorageOptionsStage模型无对应接口Storage接口功能使用Preferences接口来代替,接口入参已经重新设计 SetStorageOptionsStage模型无对应接口Storage接口功能使用Preferences接口来代替,接口入参已经重新设计 ClearStorageOptionsStage模型无对应接口Storage接口功能使用Preferences接口来代替,接口入参已经重新设计 DeleteStorageOptionsStage模型无对应接口Storage接口功能使用Preferences接口来代替,接口入参已经重新设计 static get(options: GetStorageOptions): void;@ohos.data.preferences.d.tsget(key: string, defValue: ValueType, callback: AsyncCallback<ValueType>): void;get(key: string, defValue: ValueType): Promise<ValueType>; static set(options: SetStorageOptions): void;@ohos.data.preferences.d.tsput(key: string, value: ValueType, callback: AsyncCallback<void>): void;put(key: string, value: ValueType): Promise<void>; static clear(options?: ClearStorageOptions): void;@ohos.data.preferences.d.tsclear(callback: AsyncCallback<void>): void;clear(): Promise<void>; static delete(options: DeleteStorageOptions): void;@ohos.data.preferences.d.tsdelete(key: string, callback: AsyncCallback<void>): void;delete(key: string): Promise<void>; 你可能感兴趣的鸿蒙文章 harmony 鸿蒙Ability Kit(程序框架服务) harmony 鸿蒙获取应用异常退出原因 harmony 鸿蒙UIAbility备份恢复 harmony 鸿蒙使用显式Want启动应用组件 harmony 鸿蒙Ability Kit简介 harmony 鸿蒙AbilityStage组件容器 harmony 鸿蒙访问DataAbility harmony 鸿蒙FA模型访问Stage模型DataShareExtensionAbility harmony 鸿蒙常见action与entities(不推荐使用) harmony 鸿蒙API切换概述 点赞 (0)