Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
1e3a2681
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
You need to sign in or sign up before continuing.
提交
1e3a2681
编写于
3月 17, 2022
作者:
P
PaDaBoo
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ohos Handling API interface integrity and consistency
Signed-off-by:
N
PaDaBoo
<
xuejianwu@huawei.com
>
上级
da71d188
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
105 addition
and
44 deletion
+105
-44
zh-cn/application-dev/reference/apis/js-apis-data-preferences.md
...pplication-dev/reference/apis/js-apis-data-preferences.md
+7
-5
zh-cn/application-dev/reference/apis/js-apis-data-storage.md
zh-cn/application-dev/reference/apis/js-apis-data-storage.md
+98
-39
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-data-preferences.md
浏览文件 @
1e3a2681
...
...
@@ -15,10 +15,12 @@ import data_Preferences from '@ohos.data.preferences'
## 属性
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
| MAX_KEY_LENGTH | string | 是 | 否 | key的最大长度限制,大小为80字节。
<br>
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
|
| MAX_VALUE_LENGTH | string | 是 | 否 | string类型value的最大长度限制,大小为8192字节。
<br>
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
|
| MAX_KEY_LENGTH | string | 是 | 否 | key的最大长度限制,大小为80字节。 |
| MAX_VALUE_LENGTH | string | 是 | 否 | string类型value的最大长度限制,大小为8192字节。 |
## data_Preferences.getPreferences
...
...
@@ -89,7 +91,7 @@ getPreferences(context: Context, name: string): Promise<Preferences>
## data_Preferences.deletePreferences
deletePreferences(context: Context, name: string, callback: AsyncCallback
<
void
>
)
deletePreferences(context: Context, name: string, callback: AsyncCallback
<
void
>
)
: void
从内存中移除指定文件对应的Preferences单实例,并删除指定文件及其备份文件、损坏文件。删除指定文件时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题,使用callback方式作为异步方法。
...
...
@@ -150,7 +152,7 @@ deletePreferences(context: Context, name: string): Promise<void>
## data_Preferences.removePreferencesFromCache
removePreferencesFromCache(context: Context, name: string, callback: AsyncCallback
<
Preferences
>
): void
removePreferencesFromCache(context: Context, name: string, callback: AsyncCallback
<
void
>
): void
从内存中移除指定文件对应的Preferences单实例。移除Preferences单实例时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题。
...
...
@@ -163,7 +165,7 @@ removePreferencesFromCache(context: Context, name: string, callback: AsyncCallba
| -------- | -------- | -------- | -------- |
| context | Context | 是 | 应用程序或功能的上下文 |
| name | string | 是 | 应用程序内部数据存储名称。 |
| callback | AsyncCallback
<
[Preferences](#preferences)
>
| 是 | 回调函数。 |
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。 |
-
示例:
```
...
...
zh-cn/application-dev/reference/apis/js-apis-data-storage.md
浏览文件 @
1e3a2681
...
...
@@ -4,6 +4,8 @@
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
> 从API Version 9开始,该接口不再维护,推荐使用新接口 [@ohos.data.preferences](js-apis-data-preferences.md)
...
...
@@ -13,25 +15,24 @@
import dataStorage from '@ohos.data.storage'
```
## 系统能力
SystemCapability.DistributedDataManager.Preferences.Core
## 属性
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
| MAX_KEY_LENGTH | string | 是 | 否 | key的最大长度限制,大小为80字节。 |
| MAX_VALUE_LENGTH | string | 是 | 否 | string类型value的最大长度限制,大小为8192字节。 |
## dataStorage.getStorageSync
<sup>(deprecated) </sup>
## dataStorage.getStorageSync
getStorageSync(path: string): Storage
读取指定文件,将数据加载到Storage实例,用于数据操作,此方法为同步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -55,12 +56,14 @@ getStorageSync(path: string): Storage
```
## dataStorage.getStorage
<sup>(deprecated) </sup>
## dataStorage.getStorage
getStorage(path: string, callback: AsyncCallback
<
Storage
>
): void
读取指定文件,将数据加载到Storage实例,用于数据操作,使用callback形式返回结果。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -85,12 +88,14 @@ getStorage(path: string, callback: AsyncCallback<Storage>): void
```
## dataStorage.getStorage
<sup>(deprecated) </sup>
## dataStorage.getStorage
getStorage(path: string): Promise
<
Storage
>
读取指定文件,将数据加载到Storage实例,用于数据操作,使用Promise方式作为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -118,12 +123,14 @@ getStorage(path: string): Promise<Storage>
```
## dataStorage.deleteStorageSync
<sup>(deprecated) </sup>
## dataStorage.deleteStorageSync
deleteStorageSync(path: string): void
从内存中移除指定文件对应的Storage单实例,并删除指定文件及其备份文件、损坏文件。删除指定文件时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题,此方法为同步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -135,12 +142,14 @@ deleteStorageSync(path: string): void
```
## dataStorage.deleteStorage
<sup>(deprecated) </sup>
## dataStorage.deleteStorage
deleteStorage(path: string, callback: AsyncCallback
<
void
>
)
deleteStorage(path: string, callback: AsyncCallback
<
void
>
)
: void
从内存中移除指定文件对应的Storage单实例,并删除指定文件及其备份文件、损坏文件。删除指定文件时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题,使用callback方式作为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -159,12 +168,14 @@ deleteStorage(path: string, callback: AsyncCallback<void>)
```
## dataStorage.deleteStorage
<sup>(deprecated) </sup>
## dataStorage.deleteStorage
deleteStorage(path: string): Promise
<
void
>
从内存中移除指定文件对应的Storage单实例,并删除指定文件及其备份文件、损坏文件。删除指定文件时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题,使用promise方式作为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -186,7 +197,7 @@ deleteStorage(path: string): Promise<void>
```
## dataStorage.removeStorageFromCacheSync
<sup>(deprecated) </sup>
## dataStorage.removeStorageFromCacheSync
removeStorageFromCacheSync(path: string): void
...
...
@@ -194,6 +205,8 @@ removeStorageFromCacheSync(path: string): void
此方法为同步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -205,19 +218,21 @@ removeStorageFromCacheSync(path: string): void
```
## dataStorage.removeStorageFromCache
<sup>(deprecated) </sup>
## dataStorage.removeStorageFromCache
removeStorageFromCache(path: string, callback: AsyncCallback
<
Storage
>
): void
removeStorageFromCache(path: string, callback: AsyncCallback
<
void
>
): void
从内存中移除指定文件对应的Storage单实例。移除Storage单实例时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题。
此方法为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| path | string | 是 | 应用程序内部数据存储路径。 |
| callback | AsyncCallback
<
[Storage](#storage)
>
| 是 | 回调函数。 |
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。 |
-
示例:
```
...
...
@@ -231,7 +246,7 @@ removeStorageFromCache(path: string, callback: AsyncCallback<Storage>): vo
```
## dataStorage.removeStorageFromCache
<sup>(deprecated) </sup>
## dataStorage.removeStorageFromCache
removeStorageFromCache(path: string): Promise
<
void
>
...
...
@@ -239,6 +254,8 @@ removeStorageFromCache(path: string): Promise<void>
此方法为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -260,12 +277,12 @@ removeStorageFromCache(path: string): Promise<void>
```
## Storage
<sup>(deprecated) </sup>
## Storage
提供获取和修改存储数据的接口。
### getSync
<sup>(deprecated) </sup>
### getSync
getSync(key: string, defValue: ValueType): ValueType
...
...
@@ -273,6 +290,8 @@ getSync(key: string, defValue: ValueType): ValueType
此方法为同步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -291,7 +310,7 @@ getSync(key: string, defValue: ValueType): ValueType
```
### get
<sup>(deprecated) </sup>
### get
get(key: string, defValue: ValueType, callback: AsyncCallback
<
ValueType
>
): void
...
...
@@ -299,6 +318,8 @@ get(key: string, defValue: ValueType, callback: AsyncCallback<ValueType>):
此方法为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -318,7 +339,7 @@ get(key: string, defValue: ValueType, callback: AsyncCallback<ValueType>):
```
### get
<sup>(deprecated) </sup>
### get
get(key: string, defValue: ValueType): Promise
<
ValueType
>
...
...
@@ -326,6 +347,8 @@ get(key: string, defValue: ValueType): Promise<ValueType>
此方法为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -348,7 +371,7 @@ get(key: string, defValue: ValueType): Promise<ValueType>
```
### putSync
<sup>(deprecated) </sup>
### putSync
putSync(key: string, value: ValueType): void
...
...
@@ -356,6 +379,8 @@ putSync(key: string, value: ValueType): void
此方法为同步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -368,7 +393,7 @@ putSync(key: string, value: ValueType): void
```
### put
<sup>(deprecated) </sup>
### put
put(key: string, value: ValueType, callback: AsyncCallback
<
void
>
): void
...
...
@@ -376,6 +401,8 @@ put(key: string, value: ValueType, callback: AsyncCallback<void>): void
此方法为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -395,7 +422,7 @@ put(key: string, value: ValueType, callback: AsyncCallback<void>): void
```
### put
<sup>(deprecated) </sup>
### put
put(key: string, value: ValueType): Promise
<
void
>
...
...
@@ -403,6 +430,8 @@ put(key: string, value: ValueType): Promise<void>
此方法为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -425,7 +454,7 @@ put(key: string, value: ValueType): Promise<void>
```
### hasSync
<sup>(deprecated) </sup>
### hasSync
hasSync(key: string): boolean
...
...
@@ -433,6 +462,8 @@ hasSync(key: string): boolean
此方法为同步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -452,7 +483,7 @@ hasSync(key: string): boolean
```
### has
<sup>(deprecated) </sup>
### has
has(key: string, callback: AsyncCallback
<
boolean
>
): boolean
...
...
@@ -460,6 +491,8 @@ has(key: string, callback: AsyncCallback<boolean>): boolean
此方法为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -485,7 +518,7 @@ has(key: string, callback: AsyncCallback<boolean>): boolean
```
### has
<sup>(deprecated) </sup>
### has
has(key: string): Promise
<
boolean
>
...
...
@@ -493,6 +526,8 @@ has(key: string): Promise<boolean>
此方法为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -516,7 +551,7 @@ has(key: string): Promise<boolean>
```
### deleteSync
<sup>(deprecated) </sup>
### deleteSync
deleteSync(key: string): void
...
...
@@ -524,6 +559,8 @@ deleteSync(key: string): void
此方法为同步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -535,7 +572,7 @@ deleteSync(key: string): void
```
### delete
<sup>(deprecated) </sup>
### delete
delete(key: string, callback: AsyncCallback
<
void
>
): void
...
...
@@ -543,6 +580,8 @@ delete(key: string, callback: AsyncCallback<void>): void
此方法为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -561,7 +600,7 @@ delete(key: string, callback: AsyncCallback<void>): void
```
### delete
<sup>(deprecated) </sup>
### delete
delete(key: string): Promise
<
void
>
...
...
@@ -569,6 +608,8 @@ delete(key: string): Promise<void>
此方法为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -590,7 +631,7 @@ delete(key: string): Promise<void>
```
### flushSync
<sup>(deprecated) </sup>
### flushSync
flushSync(): void
...
...
@@ -598,13 +639,15 @@ flushSync(): void
此方法为同步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
示例:
```
storage.flushSync()
```
### flush
<sup>(deprecated) </sup>
### flush
flush(callback: AsyncCallback
<
void
>
): void
...
...
@@ -612,6 +655,8 @@ flush(callback: AsyncCallback<void>): void
此方法为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -629,7 +674,7 @@ flush(callback: AsyncCallback<void>): void
```
### flush
<sup>(deprecated) </sup>
### flush
flush(): Promise
<
void
>
...
...
@@ -637,6 +682,8 @@ flush(): Promise<void>
此方法为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
返回值:
| 类型 | 说明 |
| -------- | -------- |
...
...
@@ -653,7 +700,7 @@ flush(): Promise<void>
```
### clearSync
<sup>(deprecated) </sup>
### clearSync
clearSync(): void
...
...
@@ -661,13 +708,15 @@ clearSync(): void
此方法为同步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
示例:
```
storage.clearSync()
```
### clear
<sup>(deprecated) </sup>
### clear
clear(callback: AsyncCallback
<
void
>
): void
...
...
@@ -675,6 +724,8 @@ clear(callback: AsyncCallback<void>): void
此方法为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -692,7 +743,7 @@ clear(callback: AsyncCallback<void>): void
```
### clear
<sup>(deprecated) </sup>
### clear
clear(): Promise
<
void
>
...
...
@@ -700,6 +751,8 @@ clear(): Promise<void>
此方法为异步方法。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
返回值:
| 类型 | 说明 |
| -------- | -------- |
...
...
@@ -716,12 +769,14 @@ clear(): Promise<void>
```
### on('change')
<sup>(deprecated) </sup>
### on('change')
on(type: 'change', callback: Callback
<
StorageObserver
>
): void
订阅数据变更者类需要实现StorageObserver接口,订阅的key的值发生变更后,在执行flush/flushSync方法后,callback方法会被回调。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 说明 |
| -------- | -------- | -------- |
...
...
@@ -739,12 +794,14 @@ on(type: 'change', callback: Callback<StorageObserver>): void
```
### off('change')
<sup>(deprecated) </sup>
### off('change')
off(type: 'change', callback: Callback
<
StorageObserver
>
): void
当不再进行订阅数据变更时,使用此接口取消订阅。
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
-
参数:
| 参数名 | 类型 | 说明 |
| -------- | -------- | -------- |
...
...
@@ -760,7 +817,9 @@ off(type: 'change', callback: Callback<StorageObserver>): void
```
## StorageObserver<sup>(deprecated) </sup>
## StorageObserver
**系统能力**
:SystemCapability.DistributedDataManager.Preferences.Core
| 名称 | 参数类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录