harmony 鸿蒙Storage接口切换

  • 2022-12-13
  • 浏览 (440)

Storage接口切换

FA模型接口 Stage模型接口对应d.ts文件 Stage模型对应接口
GetStorageOptions Stage模型无对应接口 Storage接口功能使用Prefereces接口来代替,接口入参已经重新设计
SetStorageOptions Stage模型无对应接口 Storage接口功能使用Prefereces接口来代替,接口入参已经重新设计
ClearStorageOptions Stage模型无对应接口 Storage接口功能使用Prefereces接口来代替,接口入参已经重新设计
DeleteStorageOptions Stage模型无对应接口 Storage接口功能使用Prefereces接口来代替,接口入参已经重新设计
static get(options: GetStorageOptions): void; \@ohos.data.preferences.d.ts get(key: string, defValue: ValueType, callback: AsyncCallback<ValueType>): void;
get(key: string, defValue: ValueType): Promise<ValueType>;
static set(options: SetStorageOptions): void; \@ohos.data.preferences.d.ts put(key: string, value: ValueType, callback: AsyncCallback<void>): void;
put(key: string, value: ValueType): Promise<void>;
static clear(options?: ClearStorageOptions): void; \@ohos.data.preferences.d.ts clear(callback: AsyncCallback<void>): void;
clear(): Promise<void>;
static delete(options: DeleteStorageOptions): void; \@ohos.data.preferences.d.ts delete(key: string, callback: AsyncCallback<void>): void;
delete(key: string): Promise<void>;

你可能感兴趣的鸿蒙文章

harmony 鸿蒙应用模型

harmony 鸿蒙使用显式Want启动应用组件

harmony 鸿蒙使用隐式Want打开网址

harmony 鸿蒙AbilityStage组件容器

harmony 鸿蒙访问DataAbility

harmony 鸿蒙FA模型访问Stage模型DataShareExtensionAbility

harmony 鸿蒙AccessibilityExtensionAbility

harmony 鸿蒙常见action与entities

harmony 鸿蒙API切换概述

harmony 鸿蒙app和deviceConfig的切换

0  赞