Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
3b81471f
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看板
未验证
提交
3b81471f
编写于
8月 09, 2022
作者:
O
openharmony_ci
提交者:
Gitee
8月 09, 2022
浏览文件
操作
浏览文件
下载
差异文件
!7901 3.2Beta2分支:首选项Preferences指南和API整改优化:需同步翻译
Merge pull request !7901 from 葛亚芳/OpenHarmony-3.2-Beta2
上级
480110ad
60355647
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
336 addition
and
311 deletion
+336
-311
zh-cn/application-dev/database/database-preference-guidelines.md
...pplication-dev/database/database-preference-guidelines.md
+54
-50
zh-cn/application-dev/database/database-preference-overview.md
.../application-dev/database/database-preference-overview.md
+12
-8
zh-cn/application-dev/reference/apis/js-apis-data-preferences.md
...pplication-dev/reference/apis/js-apis-data-preferences.md
+270
-253
未找到文件。
zh-cn/application-dev/database/database-preference-guidelines.md
浏览文件 @
3b81471f
...
...
@@ -6,11 +6,17 @@
## 场景介绍
首选项功能通常用于保存应用的一些常用配置信息,并不适合需要存储大量数据和频繁改变数据的场景。应用的数据保存在文件中,这些文件可以持久化地存储在设备上。需要注意的是,应用访问的实例包含文件所有数据,这些数据会一直加载在设备的内存中,直到应用主动从内存中将其移除前,应用都可以通过Preferences API进行相关数据操作。
首选项功能通常用于保存应用的一些常用配置信息,并不适合需要存储大量数据和频繁改变数据的场景。应用的数据保存在文件中,这些文件可以持久化地存储在设备上。
需要注意的是,应用访问的实例包含文件所有数据,这些数据会一直加载在设备的内存中,直到应用主动从内存中将其移除前,应用都可以通过Preferences API进行相关数据操作。
## 接口说明
首选项为应用提供key-value键值型的文件数据处理能力,支持应用持久化轻量级数据,并对其修改和查询。数据存储形式为键值对,键的类型为字符串型,值的存储数据类型包括数字型、字符型、布尔型。更多首选项相关接口,请见
[
首选项API
](
../reference/apis/js-apis-data-preferences.md
)
。
首选项为应用提供Key-Value键值型的文件数据处理能力,支持应用持久化轻量级数据,并对其修改和查询。
数据存储形式为键值对,键的类型为字符串型,值的存储数据类型包括数字型、字符型、布尔型以及这3种类型的数组类型。
更多首选项相关接口,请见
[
首选项API
](
../reference/apis/js-apis-data-preferences.md
)
。
### 创建存储实例
...
...
@@ -18,29 +24,26 @@
**表1**
首选项实例创建接口
| 包名
| 接口名 | 描述
|
| -----------------
| ------------------------------------------- |
------------------------------------------- |
| 包名
| 接口名 | 描述
|
| -----------------
---- | ------------------------------------------------------------ | -----------------
------------------------------------------- |
| ohos.data.preferences | getPreferences(context: Context, name: string): Promise
\<
Preferences> | 读取指定首选项持久化文件,将数据加载到Preferences实例,用于数据操作。 |
### 存
入
数据
### 存
取
数据
通过put系列方法,可以增加或修改Preferences实例中的数据。
**表2**
首选项存入接口
| 类名 | 接口名 | 描述 |
| ------- | -------------------------------------------------- | ----------------------------------------------- |
| Preferences | put(key: string, value: ValueType): Promise
\<
void> | 支持值为number、string、boolean、Array
\<
number>、Array
\<
string>、Array
\<
boolean>类型的数据存入。 |
### 读取数据
通过调用get系列方法,可以读取Preferences中的数据。
**表3**
首选项读取接口
通过调用getAll系列方法,可以获取Preferences中包含所有键值的Object对象。
**表2**
首选项存取接口
| 类名 | 接口名 | 描述 |
| ------- | ---------------------------------------------------------- | ----------------------------------------------- |
| 类名 | 接口名 | 描述 |
| ----------- | ---------------------------------------------------------- | ------------------------------------------------------------ |
| Preferences | put(key: string, value: ValueType): Promise
\<
void> | 支持存入值为number、string、boolean、Array
\<
number>、Array
\<
string>、Array
\<
boolean>类型的数据。 |
| Preferences | get(key: string, defValue: ValueType): Promise
\<
ValueType> | 支持获取值为number、string、boolean、Array
\<
number>、Array
\<
string>、Array
\<
boolean>类型的数据。 |
| Preferences | getAll(): Promise
<Object>
| 支持获取含有所有键值的Object对象。 |
### 数据持久化
...
...
@@ -48,18 +51,18 @@
**表4**
首选项持久化接口
| 类名
| 接口名 | 描述
|
| -------
| ----------------------- |
--------------------------------------- |
| 类名
| 接口名 | 描述
|
| -------
---- | ----------------------- | ----
--------------------------------------- |
| Preferences | flush(): Promise
\<
void> | 将Preferences实例通过异步线程回写入文件中。 |
### 订阅数据变化
订阅数据变更者类,订阅的
key的值发生变更后,在执行flush方法后,会执行
callback回调。
订阅数据变更者类,订阅的
Key的值发生变更后,在执行flush方法后,会触发
callback回调。
**表5**
首选项变化订阅接口
| 类名 | 接口名 | 描述 |
| ------- | ------------------------------------------------------------ | -------------- |
| 类名
| 接口名 | 描述 |
| -------
----
| ------------------------------------------------------------ | -------------- |
| Preferences | on(type: 'change', callback: Callback
<
{
key
:
string
}
>
): void | 订阅数据变化。 |
| Preferences | off(type: 'change', callback: Callback
<
{
key
:
string
}
>
): void | 注销订阅。 |
...
...
@@ -69,57 +72,57 @@
**表6**
首选项删除接口
| 包名
| 接口名
| 描述 |
| -----------------
|
---------------------------------------------------- | ------------------------------------------------------------ |
| ohos.data.preferences | deletePreferences(context: Context, name: string): Promise
\<
void>
;
| 从缓存中移除已加载的Preferences对象,同时从设备上删除对应的文件。 |
| ohos.data.preferences | removePreferencesFromCache(context: Context, name: string): Promise
\<
void>
; | 仅从缓存中移除已加载的Preferences对象,主要用于释放内存。
| 包名
| 接口名
| 描述 |
| -----------------
---- | --------
---------------------------------------------------- | ------------------------------------------------------------ |
| ohos.data.preferences | deletePreferences(context: Context, name: string): Promise
\<
void> | 从缓存中移除已加载的Preferences对象,同时从设备上删除对应的文件。 |
| ohos.data.preferences | removePreferencesFromCache(context: Context, name: string): Promise
\<
void>
| 仅从缓存中移除已加载的Preferences对象,主要用于释放内存。 |
## 开发步骤
1.
准备工作,导入@ohos.data.preferences以及相关的模块到开发环境。
```
js
import
data_preferences
from
'
@ohos.data.preferences
'
import
data_preferences
from
'
@ohos.data.preferences
'
;
```
2.
获取Preferences实例。
读取指定文件,将数据加载到Preferences实例,用于数据操作。
```
js
let
promise
=
data_preferences
.
getPreferences
(
this
.
context
,
'
mystore
'
)
let
promise
=
data_preferences
.
getPreferences
(
this
.
context
,
'
mystore
'
)
;
```
3.
存入数据。
使用
Preferences
put方法保存数据到缓存的实例中。
使用put方法保存数据到缓存的实例中。
```
js
promise
.
then
((
preferences
)
=>
{
let
putPromise
=
preferences
.
put
(
'
startup
'
,
'
auto
'
)
let
putPromise
=
preferences
.
put
(
'
startup
'
,
'
auto
'
)
;
putPromise
.
then
(()
=>
{
console
.
info
(
"
Put the value of startup successfully.
"
)
console
.
info
(
"
Succeeded in putting the value of 'startup'.
"
);
}).
catch
((
err
)
=>
{
console
.
info
(
"
Put the value of startup failed with err:
"
+
err
)
console
.
info
(
"
Failed to put the value of 'startup'. Cause:
"
+
err
);
})
}).
catch
((
err
)
=>
{
console
.
info
(
"
Get the storage failed
"
)
console
.
info
(
"
Failed to get preferences.
"
);
})
```
4.
读取数据。
使用
Preferences
get方法读取数据。
使用get方法读取数据。
```
js
promise
.
then
((
preferences
)
=>
{
let
getPromise
=
preferences
.
get
(
'
startup
'
,
'
default
'
)
let
getPromise
=
preferences
.
get
(
'
startup
'
,
'
default
'
)
;
getPromise
.
then
((
value
)
=>
{
console
.
info
(
"
The value of
startup is
"
+
value
)
console
.
info
(
"
The value of
'startup' is
"
+
value
);
}).
catch
((
err
)
=>
{
console
.
info
(
"
Get the value of startup failed with err:
"
+
err
)
console
.
info
(
"
Failed to get the value of 'startup'. Cause:
"
+
err
);
})
}).
catch
((
err
)
=>
{
console
.
info
(
"
Get the storage failed
"
)})
console
.
info
(
"
Failed to get preferences.
"
)});
```
5.
数据持久化。
...
...
@@ -132,25 +135,25 @@
6.
订阅数据变化。
应用订阅数据变化需要指定observer作为回调方法。订阅的
k
ey的值发生变更后,当执行flush方法时,observer被触发回调。
应用订阅数据变化需要指定observer作为回调方法。订阅的
K
ey的值发生变更后,当执行flush方法时,observer被触发回调。
```
js
var
observer
=
function
(
key
)
{
console
.
info
(
"
The key
of
"
+
key
+
"
changed.
"
)
console
.
info
(
"
The key
"
+
key
+
"
changed.
"
);
}
preferences
.
on
(
'
change
'
,
observer
)
preferences
.
on
(
'
change
'
,
observer
)
;
preferences
.
put
(
'
startup
'
,
'
auto
'
,
function
(
err
)
{
if
(
err
)
{
console
.
info
(
"
Put the value of startup failed with err:
"
+
err
)
return
console
.
info
(
"
Failed to put the value of 'startup'. Cause:
"
+
err
);
return
;
}
console
.
info
(
"
Put the value of startup successfully.
"
)
console
.
info
(
"
Succeeded in putting the value of 'startup'.
"
);
preferences
.
flush
(
function
(
err
)
{
if
(
err
)
{
console
.
info
(
"
F
lush to file failed with err:
"
+
err
)
return
console
.
info
(
"
F
ailed to flush. Cause:
"
+
err
);
return
;
}
console
.
info
(
"
Flushed to file successfully.
"
)
// observer will be called.
console
.
info
(
"
Succeeded in flushing.
"
);
// observer will be called.
})
})
```
...
...
@@ -160,13 +163,14 @@
使用deletePreferences方法从内存中移除指定文件对应的Preferences单实例,并删除指定文件及其备份文件、损坏文件。删除指定文件时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题。删除后,数据及文件将不可恢复。
```
js
let
proDelete
=
data_preferences
.
deletePreferences
(
context
,
'
mystore
'
)
let
proDelete
=
data_preferences
.
deletePreferences
(
context
,
'
mystore
'
)
;
proDelete
.
then
(()
=>
{
console
.
info
(
"
Deleted successfully.
"
)
console
.
info
(
"
Succeeded in deleting.
"
);
}).
catch
((
err
)
=>
{
console
.
info
(
"
Deleted failed with err:
"
+
err
)
console
.
info
(
"
Failed to delete. Cause:
"
+
err
);
})
```
## 相关实例
针对首选项开发,有以下相关实例可供参考:
-
[
`Preferences`:首选项(eTS)(API9)
](
https://gitee.com/openharmony/app_samples/tree/master/data/Preferences
)
-
[
`Preferences`:首选项(eTS)(API9)
](
https://gitee.com/openharmony/app_samples/tree/master/data/Preferences
)
\ No newline at end of file
zh-cn/application-dev/database/database-preference-overview.md
浏览文件 @
3b81471f
# 首选项概述
首选项适用于对Key-Value结构的数据进行存取和持久化操作。应用获取某个Preferences对象后,该存储对象中的数据将会被缓存在内存中,以便应用获得更快的数据存取速度。应用也可以将缓存的数据再次写回文本文件中进行持久化存储,由于文件读写将产生不可避免的系统资源开销,建议应用减少对持久化文件的读写频率。
首选项Preferences,适用于对
`Key-Value`
结构的数据进行存取和持久化操作。
应用获取某个
`Preferences`
对象后,该存储对象中的数据将会被缓存在内存中,以便应用获得更快的数据存取速度。
应用也可以将缓存的数据再次写回文本文件中进行持久化存储,由于文件读写将产生不可避免的系统资源开销,建议应用降低对持久化文件的读写频率。
## 基本概念
-
**Key-Value数据结构**
一种键值
结构数据类型。Key是不重复的关键字,Value
是数据值。
一种键值
型的数据结构。
`Key`
是不重复的关键字,
`Value`
是数据值。
-
**非关系型数据库**
区别于关系数据库,不保证遵循ACID(Atomic
ity, Consistency, Isolation and Durability)特性,不采用关系模型来组织数据,数据之间无关系
。
区别于关系数据库,不保证遵循ACID(Atomic
、Consistency、Isolation及Durability)特性,不采用关系模型来组织数据,数据之间无关系。比如,以
`Key-Value`
数据结构组成的数据库
。
## 运作机制
1.
应用通过指定首选项持久化文件将其中的数据加载到
Preferences实例,系统会通过静态容器将该实例存储在内存中,同一应用或进程中每个文件仅存在一个Preferences
实例,直到应用主动从内存中移除该实例或者删除该首选项持久化文件。
2.
应用获取到首选项持久化文件对应的实例后,可以从
Preferences实例中读取数据,或者将数据存入Preferences实例中。通过调用flush方法可以将Preferences
实例中的数据回写到文件里。
1.
应用通过指定首选项持久化文件将其中的数据加载到
`Preferences`
实例,系统会通过静态容器将该实例存储在内存中,同一应用或进程中每个文件仅存在一个
`Preferences`
实例,直到应用主动从内存中移除该实例或者删除该首选项持久化文件。
2.
应用获取到首选项持久化文件对应的实例后,可以从
`Preferences`
实例中读取数据,或者将数据存入
`Preferences`
实例中。通过调用flush方法可以将
`Preferences`
实例中的数据回写到文件里。
**图1**
首选项运作机制
...
...
@@ -23,6 +27,6 @@
## 约束与限制
-
因
Preferences实例会加载到内存中,建议存储的数据不超过一万条,并
及时清理不再使用的实例,以便减少非内存开销。
-
数据中的
key为string类型,要求非空且字符长度不超过80
字节。
-
当数据中的
value为string类型时,允许为空,字符长度不超过8192
字节。
-
因
`Preferences`
实例会加载到内存中,建议存储的数据不超过一万条,并注意
及时清理不再使用的实例,以便减少非内存开销。
-
数据中的
`Key`
为
`string`
类型,要求非空且字符长度不超过80个
字节。
-
当数据中的
`Value`
为
`string`
类型时,允许为空,字符长度不超过8192个
字节。
\ No newline at end of file
zh-cn/application-dev/reference/apis/js-apis-data-preferences.md
浏览文件 @
3b81471f
# 首选项
首选项为应用提供key-value键值型的数据处理能力,支持应用持久化轻量级数据,并对其修改和查询。数据存储形式为键值对,键的类型为字符串型,值的存储数据类型包括数字型、字符型、布尔型以及这3种类型的数组类型。
首选项为应用提供Key-Value键值型的数据处理能力,支持应用持久化轻量级数据,并对其修改和查询。
数据存储形式为键值对,键的类型为字符串型,值的存储数据类型包括数字型、字符型、布尔型以及这3种类型的数组类型。
> **说明:**
>
> 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
## 导入模块
```
t
s
```
j
s
import
data_preferences
from
'
@ohos.data.preferences
'
;
```
## 常量
**系统能力:**
以下各项对应的系统能力均为
SystemCapability.DistributedDataManager.Preferences.Core
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
| 名称
| 参数类型 | 可读 | 可写 | 说明
|
| --------
| -------- | -------- | -------- |
-------- |
| MAX_KEY_LENGTH
| string | 是 | 否 | key的最大长度限制,需小于80字节。
|
| MAX_VALUE_LENGTH | string
| 是 | 否 | value的最大长度限制,需小于8192
字节。 |
| 名称
| 参数类型 | 可读 | 可写 | 说明
|
| --------
-------- | -------- | ---- | ---- | -------------------------------
-------- |
| MAX_KEY_LENGTH
| string | 是 | 否 | Key的最大长度限制,需小于80个字节。
|
| MAX_VALUE_LENGTH | string
| 是 | 否 | Value的最大长度限制,需小于8192个
字节。 |
## data_preferences.getPreferences
getPreferences(context: Context, name: string, callback: AsyncCallback
<
Preferences
>
): void
读取指定首选项持久化文件,将数据加载到Preferences实例,用于数据操作,该方法使用callback方式作为异步方法。
读取指定首选项持久化文件,将数据加载到Preferences实例,用于数据操作,使用callback异步回调。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| context |
[
Context
](
js-apis-ability-context.md
)
| 是 | 应用程序或功能的上下文。 |
| name | string | 是 | 应用程序内部数据存储名称。 |
| callback | AsyncCallback
<
[Preferences](#preferences)
>
| 是 | 回调函数。 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------------------ | ---- | ------------------------------------------------------------ |
| context |
[
Context
](
js-apis-ability-context.md
)
| 是 | 应用上下文。 |
| name | string | 是 | 应用程序内部数据存储名称。 |
| callback | AsyncCallback
<
[Preferences](#preferences)
>
| 是 | 回调函数。当获取Preferences实例成功,err为undefined,object为获取的Preferences实例;否则err为错误码。 |
**示例:**
```
ts
data_preferences
.
getPreferences
(
this
.
context
,
'
mystore
'
,
function
(
err
,
preferences
)
{
```
js
var
preferences
=
null
;
data_preferences
.
getPreferences
(
this
.
context
,
'
mystore
'
,
function
(
err
,
object
)
{
if
(
err
)
{
console
.
info
(
"
Get preferences failed.
"
)
console
.
info
(
"
Failed to get preferences. Cause:
"
+
err
);
return
;
}
console
.
info
(
"
Get preferences successfully.
"
)
preferences
=
object
;
console
.
info
(
"
Succeeded in getting preferences.
"
);
})
```
...
...
@@ -55,28 +61,31 @@ data_preferences.getPreferences(this.context, 'mystore', function (err, preferen
getPreferences(context: Context, name: string): Promise
<
Preferences
>
读取指定首选项持久化文件,将数据加载到Preferences实例,用于数据操作,
该方法使用Promise方式作为异步方法
。
读取指定首选项持久化文件,将数据加载到Preferences实例,用于数据操作,
使用Promise异步回调
。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| context |
[
Context
](
js-apis-ability-context.md
)
| 是 | 应用程序或功能的上下文。
|
| name | string | 是
| 应用程序内部数据存储名称。 |
| 参数名 | 类型 | 必填 | 说明
|
| ------- | ------------------------------------- | ---- | ------------------
-------- |
| context |
[
Context
](
js-apis-ability-context.md
)
| 是 | 应用上下文。
|
| name | string | 是
| 应用程序内部数据存储名称。 |
**返回值:**
| 类型 | 说明
|
| -------- |
-------- |
| Promise
<
[Preferences](#preferences)
>
| Promise实例,用于异步获取结果
。 |
| 类型 | 说明
|
| ------------------------------------------ | --------------------------
-------- |
| Promise
<
[Preferences](#preferences)
>
| Promise对象,返回Preferences实例
。 |
**示例:**
```
ts
```
js
var
preferences
=
null
;
let
promise
=
data_preferences
.
getPreferences
(
this
.
context
,
'
mystore
'
)
promise
.
then
((
preferences
)
=>
{
console
.
info
(
"
Get preferences successfully.
"
)
promise
.
then
((
object
)
=>
{
preferences
=
object
;
console
.
info
(
"
Succeeded in getting preferences.
"
);
}).
catch
((
err
)
=>
{
console
.
info
(
"
Get preferences failed.
"
)
console
.
info
(
"
Failed to get preferences. Cause:
"
+
err
);
})
```
...
...
@@ -85,26 +94,27 @@ promise.then((preferences) => {
deletePreferences(context: Context, name: string, callback: AsyncCallback
<
void
>
): void
从内存中移除指定首选项持久化文件对应的Preferences单实例,并删除指定文件及其备份文件和损坏文件。
删除指定首选项持久化文件时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题,该方法使用callback方式作为异步方法。
从内存中移除指定首选项持久化文件对应的Preferences单实例,并删除指定文件及其备份文件和损坏文件,使用callback异步回调。
删除指定首选项持久化文件时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| context |
[
Context
](
js-apis-ability-context.md
)
| 是 | 应用程序或功能的上下文。
|
| name | string | 是 | 应用程序内部数据存储名称。
|
| callback | AsyncCallback
<
void
>
| 是 | 回调函数
。 |
| 参数名 | 类型 | 必填 | 说明
|
| -------- | ------------------------------------- | ---- | --------------------------------------------
-------- |
| context |
[
Context
](
js-apis-ability-context.md
)
| 是 | 应用上下文。
|
| name | string | 是 | 应用程序内部数据存储名称。
|
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。当移除成功,err为undefined,否则为错误码
。 |
**示例:**
```
t
s
```
j
s
data_preferences
.
deletePreferences
(
this
.
context
,
'
mystore
'
,
function
(
err
)
{
if
(
err
)
{
console
.
info
(
"
Deleted preferences failed, err:
"
+
err
)
console
.
info
(
"
Failed to delete preferences. Cause:
"
+
err
);
return
}
console
.
info
(
"
Deleted preferences successfully.
"
)
console
.
info
(
"
Succeeded in deleting preferences.
"
);
})
```
...
...
@@ -113,29 +123,30 @@ data_preferences.deletePreferences(this.context, 'mystore', function (err) {
deletePreferences(context: Context, name: string): Promise
<
void
>
从内存中移除指定首选项持久化文件对应的Preferences单实例,并删除指定文件及其备份文件和损坏文件。
删除指定首选项持久化文件时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题,该方法使用Promise方式作为异步方法。
从内存中移除指定首选项持久化文件对应的Preferences单实例,并删除指定文件及其备份文件和损坏文件,使用Promise异步回调。
删除指定首选项持久化文件时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| context |
[
Context
](
js-apis-ability-context.md
)
| 是 | 应用程序或功能的上下文。
|
| name | string | 是
| 应用程序内部数据存储名称。 |
| 参数名 | 类型 | 必填 | 说明
|
| ------- | ------------------------------------- | ---- | ------------------
-------- |
| context |
[
Context
](
js-apis-ability-context.md
)
| 是 | 应用程序或功能的上下文。
|
| name | string | 是
| 应用程序内部数据存储名称。 |
**返回值:**
| 类型 | 说明
|
| -------- |
-------- |
| Promise
<
void
>
| Promise实例,用于异步获取结果
。 |
| 类型 | 说明
|
| ------------------- | -----------------
-------- |
| Promise
<
void
>
| 无返回结果的Promise对象
。 |
**示例:**
```
t
s
```
j
s
let
promise
=
data_preferences
.
deletePreferences
(
this
.
context
,
'
mystore
'
)
promise
.
then
(()
=>
{
console
.
info
(
"
Deleted preferences successfully.
"
)
console
.
info
(
"
Succeeded in deleting preferences.
"
);
}).
catch
((
err
)
=>
{
console
.
info
(
"
Deleted preferences failed, err:
"
+
err
)
console
.
info
(
"
Failed to delete preferences. Cause:
"
+
err
);
})
```
...
...
@@ -144,27 +155,27 @@ promise.then(() => {
removePreferencesFromCache(context: Context, name: string, callback: AsyncCallback
<
void
>
): void
从内存中移除指定首选项持久化文件对应的Preferences单实例。
从内存中移除指定首选项持久化文件对应的Preferences单实例
,使用callback异步回调
。
移除Preferences单实例时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题
,该方法使用callback方式作为异步方法
。
移除Preferences单实例时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| context |
[
Context
](
js-apis-ability-context.md
)
| 是 | 应用程序或功能的上下文。
|
| name | string | 是 | 应用程序内部数据存储名称。
|
| callback | AsyncCallback
<
void
>
| 是 | 回调函数
。 |
| 参数名 | 类型 | 必填 | 说明
|
| -------- | ------------------------------------- | ---- | --------------------------------------------
-------- |
| context |
[
Context
](
js-apis-ability-context.md
)
| 是 | 应用程序或功能的上下文。
|
| name | string | 是 | 应用程序内部数据存储名称。
|
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。当移除成功,err为undefined,否则为错误码
。 |
**示例:**
```
t
s
```
j
s
data_preferences
.
removePreferencesFromCache
(
this
.
context
,
'
mystore
'
,
function
(
err
)
{
if
(
err
)
{
console
.
info
(
"
Removed preferences from cache failed, err:
"
+
err
)
return
console
.
info
(
"
Failed to remove preferences. Cause:
"
+
err
);
return
;
}
console
.
info
(
"
Removed preferences from cache successfully.
"
)
console
.
info
(
"
Succeeded in removing preferences.
"
);
})
```
...
...
@@ -173,62 +184,65 @@ data_preferences.removePreferencesFromCache(this.context, 'mystore', function (e
removePreferencesFromCache(context: Context, name: string): Promise
<
void
>
从内存中移除指定首选项持久化文件对应的Preferences单实例。
从内存中移除指定首选项持久化文件对应的Preferences单实例
,使用Promise异步回调
。
移除Preferences单实例时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题
,该方法使用Promise方式作为异步方法
。
移除Preferences单实例时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| context |
[
Context
](
js-apis-ability-context.md
)
| 是 | 应用程序或功能的上下文。
|
| name | string | 是
| 应用程序内部数据存储名称。 |
| 参数名 | 类型 | 必填 | 说明
|
| ------- | ------------------------------------- | ---- | ------------------
-------- |
| context |
[
Context
](
js-apis-ability-context.md
)
| 是 | 应用程序或功能的上下文。
|
| name | string | 是
| 应用程序内部数据存储名称。 |
**返回值:**
| 类型 | 说明
|
| -------- |
-------- |
| Promise
<
void
>
| Promise实例,用于异步获取结果
。 |
| 类型 | 说明
|
| ------------------- | -----------------
-------- |
| Promise
<
void
>
| 无返回结果的Promise对象
。 |
**示例:**
```
t
s
```
j
s
let
promise
=
data_preferences
.
removePreferencesFromCache
(
this
.
context
,
'
mystore
'
)
promise
.
then
(()
=>
{
console
.
info
(
"
Removed preferences from cache successfully.
"
)
console
.
info
(
"
Succeeded in removing preferences.
"
);
}).
catch
((
err
)
=>
{
console
.
info
(
"
Removed preferences from cache failed, err:
"
+
err
)
console
.
info
(
"
Failed to remove preferences. Cause:
"
+
err
);
})
```
## Preferences
提供获取和修改存储数据的接口。
存储实例,提供获取和修改存储数据的接口。
下列接口都需先使用
[
data_preferences.getPreferences
](
#data_preferencesgetpreferences
)
获取到Preferences实例,再通过此实例调用对应接口。
### get
get(key: string, defValue: ValueType, callback: AsyncCallback
<
ValueType
>
): void
获取键对应的值,如果值为null或者非默认值类型,返回默认数据,
该方法使用callback方式作为异步方法
。
获取键对应的值,如果值为null或者非默认值类型,返回默认数据,
使用callback异步回调
。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名
| 类型 | 必填 | 说明
|
| -------- | --------
| -------- |
-------- |
| key
| string | 是 | 要获取的存储key名称,不能为空。
|
| defValue |
[
ValueType
](
#valuetype
)
| 是 | 默认返回值。支持number、string、boolean、Array
\<
number>、Array
\<
string>、Array
\<
boolean>
。 |
| callback | AsyncCallback
<
ValueType
>
| 是 | 回调函数
。 |
| 参数名
| 类型 | 必填 | 说明
|
| -------- | --------
------------------------------------ | ---- | ----------------------------------------------------
-------- |
| key
| string | 是 | 要获取的存储Key名称,不能为空。
|
| defValue |
[
ValueType
](
#valuetype
)
| 是 | 默认返回值。支持number、string、boolean、Array
\<
number>、Array
\<
string>、Array
\<
boolean>类型
。 |
| callback | AsyncCallback
<
[ValueType](#valuetype)
>
| 是 | 回调函数。当获取成功时,err为undefined,data为键对应的值;否则err为错误码
。 |
**示例:**
```
ts
preferences
.
get
(
'
startup
'
,
'
default
'
,
function
(
err
,
value
)
{
```
js
preferences
.
get
(
'
startup
'
,
'
default
'
,
function
(
err
,
data
)
{
if
(
err
)
{
console
.
info
(
"
Get value of startup failed, err:
"
+
err
)
return
console
.
info
(
"
Failed to get value of 'startup'. Cause:
"
+
err
);
return
;
}
console
.
info
(
"
Get value of startup is
"
+
value
)
console
.
info
(
"
Succeeded in getting value of 'startup'. Data:
"
+
data
);
})
```
...
...
@@ -237,28 +251,29 @@ preferences.get('startup', 'default', function(err, value) {
get(key: string, defValue: ValueType): Promise
<
ValueType
>
获取键对应的值,如果值为null或者非默认值类型,返回默认数据,
该方法使用Promise方式作为异步方法
。
获取键对应的值,如果值为null或者非默认值类型,返回默认数据,
使用Promise异步回调
。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
-
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| key | string | 是 | 要获取的存储key名称,不能为空。
|
| defValue |
[
ValueType
](
#valuetype
)
| 是 | 默认返回值。支持number、string、boolean、Array
\<
number>、Array
\<
string>、Array
\<
boolean>
。 |
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | ----------------------- | ---- | ----------------------------------------------------
-------- |
| key | string | 是 | 要获取的存储Key名称,不能为空。
|
| defValue |
[
ValueType
](
#valuetype
)
| 是 | 默认返回值。支持number、string、boolean、Array
\<
number>、Array
\<
string>、Array
\<
boolean>类型
。 |
**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
ValueType
>
| Promise实例,用于异步获取结果。 |
| 类型 | 说明 |
| ----------------------------------- | ----------------------------- |
| Promise<
[
ValueType
](
#valuetype
)
>
| Promise对象,返回键对应的值。 |
**示例:**
```
t
s
let
promise
=
preferences
.
get
(
'
startup
'
,
'
default
'
)
promise
.
then
((
value
)
=>
{
console
.
info
(
"
Get value of startup is
"
+
value
)
```
j
s
let
promise
=
preferences
.
get
(
'
startup
'
,
'
default
'
)
;
promise
.
then
((
data
)
=>
{
console
.
info
(
"
Succeeded in getting value of 'startup'. Data:
"
+
data
);
}).
catch
((
err
)
=>
{
console
.
info
(
"
Get value of startup failed, err:
"
+
err
)
console
.
info
(
"
Failed to get value of 'startup'. Cause:
"
+
err
);
})
```
...
...
@@ -266,25 +281,26 @@ promise.then((value) => {
getAll(callback: AsyncCallback
<
Object
>
): void;
返回
含有所有键值的Object对象。
获取
含有所有键值的Object对象。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| callback | AsyncCallback
<
Object
>
| 是 | 回调函数。返回含有所有键值的Object对象
。 |
| 参数名 | 类型 | 必填 | 说明
|
| -------- | --------------------------- | ---- | ----------------------------------------------------
-------- |
| callback | AsyncCallback
<
Object
>
| 是 | 回调函数。当获取成功,err为undefined,value为含有所有键值的Object对象;否则err为错误码
。 |
**示例:**
```
ts
```
js
preferences
.
getAll
(
function
(
err
,
value
)
{
if
(
err
)
{
console
.
info
(
"
getAll failed, err:
"
+
err
)
return
console
.
info
(
"
Failed to get all key-values. Cause:
"
+
err
);
return
;
}
let
keys
=
Object
.
keys
(
value
)
console
.
info
(
'
getAll keys =
'
+
keys
)
console
.
info
(
"
getAll object =
"
+
JSON
.
stringify
(
value
))
let
allKeys
=
Object
.
keys
(
value
);
console
.
info
(
"
getAll keys =
"
+
allKeys
);
console
.
info
(
"
getAll object =
"
+
JSON
.
stringify
(
value
))
;
});
```
...
...
@@ -293,24 +309,24 @@ preferences.getAll(function (err, value) {
getAll(): Promise
<
Object
>
返回
含有所有键值的Object对象。
获取
含有所有键值的Object对象。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**返回值:**
| 类型 | 说明
|
| -------- |
-------- |
| Promise
<
Object
>
| Promise对象。
返回含有所有键值的Object对象。 |
| 类型 | 说明
|
| --------------------- | -----------------------------------
-------- |
| Promise
<
Object
>
| Promise对象,
返回含有所有键值的Object对象。 |
**示例:**
```
t
s
let
promise
=
preferences
.
getAll
()
```
j
s
let
promise
=
preferences
.
getAll
()
;
promise
.
then
((
value
)
=>
{
let
keys
=
Object
.
keys
(
value
)
console
.
info
(
'
getAll keys =
'
+
keys
)
console
.
info
(
"
getAll object =
"
+
JSON
.
stringify
(
value
))
let
allKeys
=
Object
.
keys
(
value
);
console
.
info
(
'
getAll keys =
'
+
allKeys
);
console
.
info
(
"
getAll object =
"
+
JSON
.
stringify
(
value
))
;
}).
catch
((
err
)
=>
{
console
.
info
(
"
getAll failed, err:
"
+
err
)
console
.
info
(
"
Failed to get all key-values. Cause:
"
+
err
);
})
```
...
...
@@ -318,25 +334,25 @@ promise.then((value) => {
put(key: string, value: ValueType, callback: AsyncCallback
<
void
>
): void
首先获取指定首选项持久化文件对应的Preferences实例,然后借助Preferences API将数据写入Preferences实例,通过flush或者flushSync将Preferences实例持久化,该方法使用callback方式作为异步方法
。
将数据写入Preferences实例,可通过
[
flush
](
#flush
)
将Preferences实例持久化,使用callback异步回调
。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| key | string | 是 | 要修改的存储的key,不能为空。
|
| value |
[
ValueType
](
#valuetype
)
| 是 | 存储的新值。支持number、string、boolean、Array
\<
number>、Array
\<
string>、Array
\<
boolean>
。 |
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。
|
| 参数名 | 类型 | 必填 | 说明
|
| -------- | ------------------------- | ---- | ----------------------------------------------------
-------- |
| key | string | 是 | 要修改的存储的Key,不能为空。
|
| value |
[
ValueType
](
#valuetype
)
| 是 | 存储的新值。支持number、string、boolean、Array
\<
number>、Array
\<
string>、Array
\<
boolean>类型
。 |
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。当数据写入成功,err为undefined;否则为错误码。
|
**示例:**
```
t
s
```
j
s
preferences
.
put
(
'
startup
'
,
'
auto
'
,
function
(
err
)
{
if
(
err
)
{
console
.
info
(
"
Put value of startup failed, err:
"
+
err
)
return
console
.
info
(
"
Failed to put value of 'startup'. Cause:
"
+
err
);
return
;
}
console
.
info
(
"
Put value of startup successfully.
"
)
console
.
info
(
"
Succeeded in putting value of 'startup'.
"
);
})
```
...
...
@@ -345,28 +361,28 @@ preferences.put('startup', 'auto', function (err) {
put(key: string, value: ValueType): Promise
<
void
>
首先获取指定首选项持久化文件对应的Preferences实例,然后借助Preferences API将数据写入Preferences实例,通过flush或者flushSync将Preferences实例持久化,该方法使用Promise方式作为异步方法
。
将数据写入Preferences实例,可通过
[
flush
](
#flush
)
将Preferences实例持久化,使用Promise异步回调
。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| key | string | 是 | 要修改的存储的key,不能为空。
|
| value |
[
ValueType
](
#valuetype
)
| 是 | 存储的新值。支持number、string、boolean、Array
\<
number>、Array
\<
string>、Array
\<
boolean>
。 |
| 参数名 | 类型 | 必填 | 说明
|
| ------ | ----------------------- | ---- | ----------------------------------------------------
-------- |
| key | string | 是 | 要修改的存储的Key,不能为空。
|
| value |
[
ValueType
](
#valuetype
)
| 是 | 存储的新值。支持number、string、boolean、Array
\<
number>、Array
\<
string>、Array
\<
boolean>类型
。 |
**返回值:**
| 类型 | 说明
|
| -------- |
-------- |
| Promise
<
void
>
| Promise实例,用于异步处理
。 |
| 类型 | 说明
|
| ------------------- | -----------------
-------- |
| Promise
<
void
>
| 无返回结果的Promise对象
。 |
**示例:**
```
t
s
let
promise
=
preferences
.
put
(
'
startup
'
,
'
auto
'
)
```
j
s
let
promise
=
preferences
.
put
(
'
startup
'
,
'
auto
'
)
;
promise
.
then
(()
=>
{
console
.
info
(
"
Put value of startup successfully.
"
)
console
.
info
(
"
Succeeded in putting value of 'startup'.
"
);
}).
catch
((
err
)
=>
{
console
.
info
(
"
Put value of startup failed, err:
"
+
err
)
console
.
info
(
"
Failed to put value of 'startup'. Cause:
"
+
err
));
})
```
...
...
@@ -375,27 +391,27 @@ promise.then(() => {
has(key: string, callback: AsyncCallback
<
boolean
>
): void
检查存储对象是否包含名为给定
key的存储键值对,该方法使用callback方式作为异步方法
。
检查存储对象是否包含名为给定
Key的存储键值对,使用callback异步回调
。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| key | string | 是 | 要检查的存储key名称,不能为空。
|
| callback | AsyncCallback
<
boolean
>
| 是
| 回调函数。返回存储对象是否包含给定key的存储键值对,true表示存在,false表示不存在。 |
| 参数名 | 类型 | 必填 | 说明
|
| -------- | ---------------------------- | ---- | ----------------------------------------------------
-------- |
| key | string | 是 | 要检查的存储key名称,不能为空。
|
| callback | AsyncCallback
<
boolean
>
| 是
| 回调函数。返回存储对象是否包含给定key的存储键值对,true表示存在,false表示不存在。 |
**示例:**
```
t
s
```
j
s
preferences
.
has
(
'
startup
'
,
function
(
err
,
isExist
)
{
if
(
err
)
{
console
.
info
(
"
Check the key of startup failed, err:
"
+
err
)
return
console
.
info
(
"
Failed to check the key 'startup'. Cause:
"
+
err
);
return
;
}
if
(
isExist
)
{
console
.
info
(
"
The key
of startup is contained.
"
)
console
.
info
(
"
The key
'startup' is contained.
"
);
}
else
{
console
.
info
(
"
The key
of startup dose not contain.
"
)
console
.
info
(
"
The key
'startup' dose not contain.
"
);
}
})
```
...
...
@@ -405,31 +421,32 @@ preferences.has('startup', function (err, isExist) {
has(key: string): Promise
<
boolean
>
检查存储对象是否包含名为给定
key的存储键值对,该方法使用Promise方式作为异步方法
。
检查存储对象是否包含名为给定
Key的存储键值对,使用Promise异步回调
。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| key | string | 是
| 要检查的存储key名称,不能为空。 |
| 参数名 | 类型 | 必填 | 说明
|
| ------ | ------ | ---- | -----------------------
-------- |
| key | string | 是
| 要检查的存储key名称,不能为空。 |
**返回值:**
| 类型 | 说明
|
| -------- |
-------- |
| Promise
<
boolean
>
| Promise对象。返回存储对象是否包含给定key的存储键值对,true表示存在,false表示不存在。 |
| 类型 | 说明
|
| ---------------------- | ----------------------------------------------------
-------- |
| Promise
<
boolean
>
| Promise对象。返回存储对象是否包含给定key的存储键值对,true表示存在,false表示不存在。 |
**示例:**
```
ts
let
promise
=
preferences
.
has
(
'
startup
'
)
```
js
let
promise
=
preferences
.
has
(
'
startup
'
);
promise
.
then
((
isExist
)
=>
{
if
(
isExist
)
{
console
.
info
(
"
The key
of startup is contained.
"
)
console
.
info
(
"
The key
'startup' is contained.
"
);
}
else
{
console
.
info
(
"
The key
of startup dose not contain.
"
)
console
.
info
(
"
The key
'startup' dose not contain.
"
);
}
}).
catch
((
err
)
=>
{
console
.
info
(
"
Check the key of startup failed, err:
"
+
err
)
console
.
info
(
"
Failed to check the key 'startup'. Cause:
"
+
err
);
})
```
...
...
@@ -438,24 +455,24 @@ promise.then((isExist) => {
delete(key: string, callback: AsyncCallback
<
void
>
): void
从存储对象中删除名为给定
key的存储键值对,该方法使用callback方式作为异步方法
。
从存储对象中删除名为给定
Key的存储键值对,使用callback异步回调
。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| key | string | 是 | 要删除的存储key名称,不能为空。
|
| callback | AsyncCallback
<
void
>
| 是 | 回调函数
。 |
| 参数名 | 类型 | 必填 | 说明
|
| -------- | ------------------------- | ---- | --------------------------------------------
-------- |
| key | string | 是 | 要删除的存储Key名称,不能为空。
|
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。当删除成功,err为undefined;否则为错误码
。 |
**示例:**
```
t
s
```
j
s
preferences
.
delete
(
'
startup
'
,
function
(
err
)
{
if
(
err
)
{
console
.
info
(
"
Delete startup key failed, err:
"
+
err
)
return
console
.
info
(
"
Failed to delete the key 'startup'. Cause:
"
+
err
);
return
;
}
console
.
info
(
"
Deleted startup key successfully.
"
)
console
.
info
(
"
Succeeded in deleting the key 'startup'.
"
);
})
```
...
...
@@ -464,27 +481,27 @@ preferences.delete('startup', function (err) {
delete(key: string): Promise
<
void
>
从存储对象删除名为给定
key的存储键值对,该方法使用Promise方式作为异步方法
。
从存储对象删除名为给定
Key的存储键值对,使用Promise异步回调
。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| key | string | 是
| 要删除的存储key名称,不能为空。 |
| 参数名 | 类型 | 必填 | 说明
|
| ------ | ------ | ---- | -----------------------
-------- |
| key | string | 是
| 要删除的存储key名称,不能为空。 |
**返回值:**
| 类型 | 说明
|
| -------- |
-------- |
| Promise
<
void
>
| Promise实例,用于异步处理
。 |
| 类型 | 说明
|
| ------------------- | -----------------
-------- |
| Promise
<
void
>
| 无返回结果的Promise对象
。 |
**示例:**
```
t
s
let
promise
=
preferences
.
delete
(
'
startup
'
)
```
j
s
let
promise
=
preferences
.
delete
(
'
startup
'
)
;
promise
.
then
(()
=>
{
console
.
info
(
"
Deleted startup key successfully.
"
)
console
.
info
(
"
Succeeded in deleting the key 'startup'.
"
);
}).
catch
((
err
)
=>
{
console
.
info
(
"
Delete startup key failed, err:
"
+
err
)
console
.
info
(
"
Failed to delete the key 'startup'. Cause:
"
+
err
);
})
```
...
...
@@ -493,23 +510,23 @@ promise.then(() => {
flush(callback: AsyncCallback
<
void
>
): void
将当前preferences对象中的修改保存到当前的preferences,并异步存储到首选项持久化文件中,
该方法使用callback方式作为异步方法
。
将当前preferences对象中的修改保存到当前的preferences,并异步存储到首选项持久化文件中,
使用callback异步回调
。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| callback | AsyncCallback
<
void
>
| 是 | 回调函数
。 |
| 参数名 | 类型 | 必填 | 说明
|
| -------- | ------------------------- | ---- | --------------------------------------------
-------- |
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。当保存成功,err为undefined;否则为错误码
。 |
**示例:**
```
t
s
```
j
s
preferences
.
flush
(
function
(
err
)
{
if
(
err
)
{
console
.
info
(
"
F
lush to file failed, err:
"
+
err
)
return
console
.
info
(
"
F
ailed to flush. Cause:
"
+
err
);
return
;
}
console
.
info
(
"
Flushed to file successfully.
"
)
console
.
info
(
"
Succeeded in flushing.
"
);
})
```
...
...
@@ -518,22 +535,22 @@ preferences.flush(function (err) {
flush(): Promise
<
void
>
将当前preferences对象中的修改保存到当前的preferences,并异步存储到首选项持久化文件中,
该方法使用Promise方式作为异步方法
。
将当前preferences对象中的修改保存到当前的preferences,并异步存储到首选项持久化文件中,
使用Promise异步回调
。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**返回值:**
| 类型 | 说明
|
| -------- |
-------- |
| Promise
<
void
>
| Promise实例,用于异步处理
。 |
| 类型 | 说明
|
| ------------------- | -----------------
-------- |
| Promise
<
void
>
| 无返回结果的Promise对象
。 |
**示例:**
```
t
s
let
promise
=
preferences
.
flush
()
```
j
s
let
promise
=
preferences
.
flush
()
;
promise
.
then
(()
=>
{
console
.
info
(
"
Flushed to file successfully.
"
)
console
.
info
(
"
Succeeded in flushing.
"
);
}).
catch
((
err
)
=>
{
console
.
info
(
"
F
lush to file failed, err:
"
+
err
)
console
.
info
(
"
F
ailed to flush. Cause:
"
+
err
);
})
```
...
...
@@ -542,23 +559,23 @@ promise.then(() => {
clear(callback: AsyncCallback
<
void
>
): void
清除此存储对象中的所有存储,
该方法使用callback方式作为异步方法
。
清除此存储对象中的所有存储,
使用callback异步回调
。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| callback | AsyncCallback
<
void
>
| 是 | 回调函数
。 |
| 参数名 | 类型 | 必填 | 说明
|
| -------- | ------------------------- | ---- | --------------------------------------------
-------- |
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。当清除成功,err为undefined;否则为错误码
。 |
**示例:**
```
t
s
```
j
s
preferences
.
clear
(
function
(
err
)
{
if
(
err
)
{
console
.
info
(
"
Clear to file failed, err:
"
+
err
)
return
console
.
info
(
"
Failed to clear. Cause:
"
+
err
);
return
;
}
console
.
info
(
"
Cleared to file successfully.
"
)
console
.
info
(
"
Succeeded in clearing.
"
);
})
```
...
...
@@ -567,22 +584,22 @@ preferences.clear(function (err) {
clear(): Promise
<
void
>
清除此存储对象中的所有存储,
该方法使用Promise方式作为异步方法
。
清除此存储对象中的所有存储,
使用Promise异步回调
。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**返回值:**
| 类型 | 说明
|
| -------- |
-------- |
| Promise
<
void
>
| Promise实例,用于异步处理
。 |
| 类型 | 说明
|
| ------------------- | -----------------
-------- |
| Promise
<
void
>
| 无返回结果的Promise对象
。 |
**示例:**
```
t
s
```
j
s
let
promise
=
preferences
.
clear
()
promise
.
then
(()
=>
{
console
.
info
(
"
Cleared to file successfully.
"
)
console
.
info
(
"
Succeeded in clearing.
"
);
}).
catch
((
err
)
=>
{
console
.
info
(
"
Clear to file failed, err:
"
+
err
)
console
.
info
(
"
Failed to clear. Cause:
"
+
err
);
})
```
...
...
@@ -591,40 +608,40 @@ promise.then(() => {
on(type: 'change', callback: Callback
<
{ key : string }
>
): void
订阅数据变更
者类,订阅的key的值发生变更后,在执行flush方法后,callback方法会被
回调。
订阅数据变更
,订阅的Key的值发生变更后,在执行
[
flush
](
#flush
)
方法后,触发callback
回调。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| type | string | 是 |
事件类型,固定值'change',表示数据变更。 |
| callback | Callback
<
{ key : string }
>
| 是| 回调对象实例。
|
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------------------------------- | ---- | --------------------------------
-------- |
| type | string | 是 |
事件类型,固定值'change',表示数据变更。 |
| callback | Callback
<
{ key : string }
>
| 是 | 回调对象实例。
|
**示例:**
```
t
s
```
j
s
data_preferences
.
getPreferences
(
this
.
context
,
'
mystore
'
,
function
(
err
,
preferences
)
{
if
(
err
)
{
console
.
info
(
"
Get preferences failed.
"
)
console
.
info
(
"
Failed to Gget preferences.
"
);
return
;
}
var
observer
=
function
(
key
)
{
console
.
info
(
"
The key
of
"
+
key
+
"
changed.
"
)
console
.
info
(
"
The key
"
+
key
+
"
changed.
"
);
}
preferences
.
on
(
'
change
'
,
observer
)
preferences
.
on
(
'
change
'
,
observer
)
;
preferences
.
put
(
'
startup
'
,
'
auto
'
,
function
(
err
)
{
if
(
err
)
{
console
.
info
(
"
Put the value of startup failed, err:
"
+
err
)
return
console
.
info
(
"
Failed to put the value of 'startup'. Cause:
"
+
err
);
return
;
}
console
.
info
(
"
Put the value of startup successfully.
"
)
console
.
info
(
"
Succeeded in putting the value of 'startup'.
"
);
preferences
.
flush
(
function
(
err
)
{
if
(
err
)
{
console
.
info
(
"
F
lush to file failed, err:
"
+
err
)
return
console
.
info
(
"
F
ailed to flush. Cause:
"
+
err
);
return
;
}
console
.
info
(
"
Flushed to file successfully.
"
)
// observer will be called.
console
.
info
(
"
Succeeded in flushing.
"
);
// observer will be called.
})
})
})
...
...
@@ -635,42 +652,42 @@ data_preferences.getPreferences(this.context, 'mystore', function (err, preferen
off(type: 'change', callback?: Callback
<
{ key : string }
>
): void
当不再进行订阅数据变更时,使用此接口取消订阅
。
取消订阅数据变更,订阅的Key的值发生变更后,在执行
[
flush
](
#flush
)
方法后,触发callback回调
。
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------- | -------- |
-------- |
| type | string | 是 | 事件类型,固定值'change',表示数据变更。
|
| callback | Callback
<
{ key : string }
>
| 否| 需要取消的回调对象实例,不填
则全部取消。 |
| 参数名 | 类型 | 必填 | 说明
|
| -------- | -------------------------------- | ---- | ----------------------------------
-------- |
| type | string | 是 | 事件类型,固定值'change',表示数据变更。
|
| callback | Callback
<
{ key : string }
>
| 否 | 需要取消的回调对象实例,不填写
则全部取消。 |
**示例:**
```
t
s
```
j
s
data_preferences
.
getPreferences
(
this
.
context
,
'
mystore
'
,
function
(
err
,
preferences
)
{
if
(
err
)
{
console
.
info
(
"
Get preferences failed.
"
)
console
.
info
(
"
Failed to Gget preferences.
"
);
return
;
}
var
observer
=
function
(
key
)
{
console
.
info
(
"
The key
of
"
+
key
+
"
changed.
"
)
console
.
info
(
"
The key
"
+
key
+
"
changed.
"
);
}
preferences
.
on
(
'
change
'
,
observer
)
preferences
.
on
(
'
change
'
,
observer
)
;
preferences
.
put
(
'
startup
'
,
'
auto
'
,
function
(
err
)
{
if
(
err
)
{
console
.
info
(
"
Put the value of startup failed, err:
"
+
err
)
return
console
.
info
(
"
Failed to put the value of 'startup'. Cause:
"
+
err
);
return
;
}
console
.
info
(
"
Put the value of startup successfully.
"
)
console
.
info
(
"
Succeeded in putting the value of 'startup'.
"
);
preferences
.
flush
(
function
(
err
)
{
if
(
err
)
{
console
.
info
(
"
F
lush to file failed, err:
"
+
err
)
return
console
.
info
(
"
F
ailed to flush. Cause:
"
+
err
);
return
;
}
console
.
info
(
"
Flushed to file successfully.
"
)
// observer will be called.
console
.
info
(
"
Succeeded in flushing.
"
);
// observer will be called.
})
preferences
.
off
(
'
change
'
,
observer
)
preferences
.
off
(
'
change
'
,
observer
)
;
})
})
```
...
...
@@ -681,11 +698,11 @@ data_preferences.getPreferences(this.context, 'mystore', function (err, preferen
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
| 类型 | 说明 |
| -------------- | ------------------------------ |
| number | 表示值类型为数字。 |
| string | 表示值类型为字符串。 |
| boolean | 表示值类型为布尔值。 |
| 类型
| 说明 |
| --------------
-
| ------------------------------ |
| number
| 表示值类型为数字。 |
| string
| 表示值类型为字符串。 |
| boolean
| 表示值类型为布尔值。 |
| Array
\<
number> | 表示值类型为数字类型的数组。 |
| Array
\<
boolean> | 表示值类型为布尔类型的数组。 |
| Array
\<
string> | 表示值类型为字符串类型的数组。 |
| Array
\<
string> | 表示值类型为字符串类型的数组。 |
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录