提交 26a59deb 编写于 作者: P PaDaBoo

修改系统能力关键字

Signed-off-by: NPaDaBoo <xuejianwu@huawei.com>
上级 600d18d0
......@@ -17,10 +17,8 @@ import data_Preferences from '@ohos.data.preferences'
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
| 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字节。<br>**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core |
| MAX_VALUE_LENGTH | string | 是 | 否 | string类型value的最大长度限制,大小为8192字节。<br>**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core |
## data_Preferences.getPreferences
......@@ -30,7 +28,7 @@ getPreferences(context: Context, name: string, callback: AsyncCallback&lt;Prefer
读取指定文件,将数据加载到Preferences实例,用于数据操作,使用callback形式返回结果。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -61,7 +59,7 @@ getPreferences(context: Context, name: string): Promise&lt;Preferences&gt;
读取指定文件,将数据加载到Preferences实例,用于数据操作,使用Promise方式作为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -95,7 +93,7 @@ deletePreferences(context: Context, name: string, callback: AsyncCallback&lt;voi
从内存中移除指定文件对应的Preferences单实例,并删除指定文件及其备份文件、损坏文件。删除指定文件时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题,使用callback方式作为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -124,7 +122,7 @@ deletePreferences(context: Context, name: string): Promise&lt;void&gt;
从内存中移除指定文件对应的Preferences单实例,并删除指定文件及其备份文件、损坏文件。删除指定文件时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题,使用promise方式作为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -158,7 +156,7 @@ removePreferencesFromCache(context: Context, name: string, callback: AsyncCallba
此方法为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -189,7 +187,7 @@ removePreferencesFromCache(context: Context, name: string): Promise&lt;void&gt;
此方法为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -228,7 +226,7 @@ get(key: string, defValue: ValueType, callback: AsyncCallback&lt;ValueType&gt;):
此方法为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -257,7 +255,7 @@ get(key: string, defValue: ValueType): Promise&lt;ValueType&gt;
此方法为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- **参数:**
| 参数名 | 类型 | 必填 | 说明 |
......@@ -289,7 +287,7 @@ put(key: string, value: ValueType, callback: AsyncCallback&lt;void&gt;): void
此方法为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -318,7 +316,7 @@ put(key: string, value: ValueType): Promise&lt;void&gt;
此方法为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -350,7 +348,7 @@ has(key: string, callback: AsyncCallback&lt;boolean&gt;): boolean
此方法为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -385,7 +383,7 @@ has(key: string): Promise&lt;boolean&gt;
此方法为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -418,7 +416,7 @@ delete(key: string, callback: AsyncCallback&lt;void&gt;): void
此方法为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -446,7 +444,7 @@ delete(key: string): Promise&lt;void&gt;
此方法为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -477,7 +475,7 @@ flush(callback: AsyncCallback&lt;void&gt;): void
此方法为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -504,7 +502,7 @@ flush(): Promise&lt;void&gt;
此方法为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 返回值:
| 类型 | 说明 |
......@@ -530,7 +528,7 @@ clear(callback: AsyncCallback&lt;void&gt;): void
此方法为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 必填 | 说明 |
......@@ -557,7 +555,7 @@ clear(): Promise&lt;void&gt;
此方法为异步方法。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 返回值:
| 类型 | 说明 |
......@@ -581,7 +579,7 @@ on(type: 'change', callback: Callback&lt;{ key : string }&gt;): void
订阅数据变更者类,订阅的key的值发生变更后,在执行flush方法后,callback方法会被回调。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 说明 |
......@@ -606,7 +604,7 @@ off(type: 'change', callback: Callback&lt;{ key : string }&gt;): void
当不再进行订阅数据变更时,使用此接口取消订阅。
- 系统能力:SystemCapability.DistributedDataManager.Preferences.Core
**系统能力**:SystemCapability.DistributedDataManager.Preferences.Core
- 参数:
| 参数名 | 类型 | 说明 |
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册