Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
9457b8ea
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,发现更多精彩内容 >>
提交
9457b8ea
编写于
6月 27, 2023
作者:
R
renjiecui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
adapt interface code
Signed-off-by:
N
renjiecui
<
cuirenjie@huawei.com
>
上级
db64732d
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
90 addition
and
33 deletion
+90
-33
zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md
...cation-dev/reference/apis/js-apis-data-relationalStore.md
+90
-33
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md
浏览文件 @
9457b8ea
...
...
@@ -452,14 +452,14 @@ class EntryAbility extends UIAbility {
## DistributedType<sup>10+</sup>
描述表的分布式类型的枚举。
描述表的分布式类型的枚举。
请使用枚举名称而非枚举值。
**需要权限:**
ohos.permission.DISTRIBUTED_DATASYNC
| 名称 | 值 | 说明 |
| ------------------ | --- | -------------------------------------------------------------------------------------------------- |
| DISTRIBUTED_DEVICE |
0
| 表示在不同设备之间分布式的列表。
<br>
**系统能力:**
SystemCapability.DistributedDataManager.RelationalStore.Core |
| DISTRIBUTED_CLOUD | - | 表示在设备和云端之间分布式的列表。
请使用枚举名称而非枚举值。
<br>
**系统能力:**
SystemCapability.DistributedDataManager.CloudSync.Client |
| DISTRIBUTED_DEVICE |
-
| 表示在不同设备之间分布式的列表。
<br>
**系统能力:**
SystemCapability.DistributedDataManager.RelationalStore.Core |
| DISTRIBUTED_CLOUD | - | 表示在设备和云端之间分布式的列表。
<br>
**系统能力:**
SystemCapability.DistributedDataManager.CloudSync.Client |
## DistributedConfig<sup>10+</sup>
...
...
@@ -2965,11 +2965,11 @@ store.setDistributedTables(["EMPLOYEE"], function (err) {
})
```
### setDistributedTables
<sup>10+</sup>
### setDistributedTables
setDistributedTables(tables: Array
<
string
>
, type: DistributedType, callback: AsyncCallback
<
void
>
): void
setDistributedTables(tables: Array
<
string
>
): Promise
<
void
>
设置分布式列表,使用
callback
异步回调。
设置分布式列表,使用
Promise
异步回调。
**需要权限:**
ohos.permission.DISTRIBUTED_DATASYNC
...
...
@@ -2977,15 +2977,19 @@ setDistributedTables(tables: Array<string>, type: DistributedType, callbac
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------ | ---- | ---------------------- |
| tables | Array
<
string
>
| 是 | 要设置的分布式列表表名 |
| type |
[
DistributedType
](
#distributedtype10
)
| 是 | 表的分布式类型。 |
| callback | AsyncCallback
<
void
>
| 是 | 指定callback回调函数。 |
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------------------------ | ---- | ------------------------ |
| tables | ArrayArray
<
string
>
| 是 | 要设置的分布式列表表名。 |
**返回值**
:
| 类型 | 说明 |
| ------------------- | ------------------------- |
| Promise
<
void
>
| 无返回结果的Promise对象。 |
**错误码:**
以下错误码的详细介绍请参见
[
关系型数据库错误码
](
..
/errorcodes/errorcode-data-rdb.md
)
。
以下错误码的详细介绍请参见
[
关系型数据库错误码
](
https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/reference
/errorcodes/errorcode-data-rdb.md
)
。
|
**错误码ID**
|
**错误信息**
|
| ------------ | ------------ |
...
...
@@ -2994,18 +2998,17 @@ setDistributedTables(tables: Array<string>, type: DistributedType, callbac
**示例:**
```
js
store
.
setDistributedTables
([
"
EMPLOYEE
"
],
relationalStore
.
DistributedType
.
DISTRIBUTED_CLOUD
,
function
(
err
)
{
if
(
err
)
{
console
.
error
(
`SetDistributedTables failed, code is
${
err
.
code
}
,message is
${
err
.
message
}
`
);
return
;
}
let
promise
=
store
.
setDistributedTables
([
"
EMPLOYEE
"
]);
promise
.
then
(()
=>
{
console
.
info
(
`SetDistributedTables successfully.`
);
}).
catch
((
err
)
=>
{
console
.
error
(
`SetDistributedTables failed, code is
${
err
.
code
}
,message is
${
err
.
message
}
`
);
})
```
### setDistributedTables
### setDistributedTables
<sup>10+</sup>
setDistributedTables(tables: Array
<
string>, type?:
DistributedType
, config?: DistributedConfig): Promise
<
void>
setDistributedTables(tables: Array
<
string>, type?:
number
, config?: DistributedConfig): Promise
<
void>
设置分布式列表,使用Promise异步回调。
...
...
@@ -3015,11 +3018,11 @@ store.setDistributedTables(["EMPLOYEE"], relationalStore.DistributedType.DISTRIB
**参数:**
| 参数名 | 类型
| 必填 | 说明
|
| ------ | -----------------------------------------
| ---- |
---------------------------------------------------- |
| tables | Array
<
string
>
| 是 | 要设置的分布式列表表名。
|
| type |
[
DistributedType<sup>10+</sup>
](
#distributedtype10
)
| 否 | 表的分布式类型。
<br>
API version 10新增可选参数。默认值是DISTRIBUTED_DEVICE。
|
| config |
[
DistributedConfig<sup>10+</sup>
](
#distributedconfig10
)
| 否 | 表的分布式配置信息。
<br/>
API version 10新增可选参数。
不传入时默认autoSync为false,即只支持手动同步。 |
| 参数名 | 类型
| 必填 | 说明
|
| ------ | -----------------------------------------
-------------- | ---- | --------
---------------------------------------------------- |
| tables | Array
<
string
>
| 是 | 要设置的分布式列表表名。
|
| type |
number | 否 | 表的分布式类型。默认值是DISTRIBUTED_DEVICE。
<br>
目前支持的入参值为: DISTRIBUTED_DEVICE、relationalStore.DistributedType.DISTRIBUTED_CLOUD。
<br/>
当type为relationalStore.DistributedType.DISTRIBUTED_DEVICE时,表示表在不同设备之间分布式。
<br/>
当type为relationalStore.DistributedType.DISTRIBUTED_CLOUD时,表示表在设备和云端之间分布式。
|
| config |
[
DistributedConfig<sup>10+</sup>
](
#distributedconfig10
)
| 否 | 表的分布式配置信息。不传入时默认autoSync为false,即只支持手动同步。 |
**返回值**
:
...
...
@@ -3027,14 +3030,6 @@ store.setDistributedTables(["EMPLOYEE"], relationalStore.DistributedType.DISTRIB
| ------------------- | ------------------------- |
| Promise
<
void
>
| 无返回结果的Promise对象。 |
**错误码:**
以下错误码的详细介绍请参见
[
关系型数据库错误码
](
../errorcodes/errorcode-data-rdb.md
)
。
|
**错误码ID**
|
**错误信息**
|
| ------------ | ---------------------------- |
| 14800000 | Inner error. |
**示例:**
```
js
...
...
@@ -3062,7 +3057,7 @@ setDistributedTables(tables: Array<string>, type: number, config: Distribu
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------- | --- | --------------- |
| tables | Array
<
string
>
| 是 | 要设置的分布式列表表名。 |
| type | number | 是 | 表的分布式类型。目前支持的入参值为:
0、relationalStore.DistributedType.DISTRIBUTED_CLOUD。
<br>
当type为0时,表示表在不同设备之间分布式。
<br>
当type为relationalStore.DistributedType.DISTRIBUTED_CLOUD时,表示表在设备和云端之间分布式。
|
| type | number | 是 | 表的分布式类型。目前支持的入参值为:
DISTRIBUTED_DEVICE、relationalStore.DistributedType.DISTRIBUTED_CLOUD。
<br>
当type为relationalStore.DistributedType.DISTRIBUTED_DEVICE时,表示表在不同设备之间分布式。
<br>
当type为relationalStore.DistributedType.DISTRIBUTED_CLOUD时,表示表在设备和云端之间分布式。
|
| config |
[
DistributedConfig
](
#distributedconfig10
)
| 是 | 表的分布式配置信息。 |
| callback | AsyncCallback
<
void
>
| 是 | 指定callback回调函数。 |
...
...
@@ -3320,6 +3315,37 @@ promise.then((result) =>{
### on('dataChange')
on(event: 'dataChange', type: SubscribeType, observer: Callback
<
Array
<
string
>>
): void
注册数据库的观察者。当分布式数据库中的数据发生更改时,将调用回调。
**系统能力:**
SystemCapability.DistributedDataManager.RelationalStore.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| event | string | 是 | 取值为'dataChange',表示数据更改。 |
| type |
[
SubscribeType
](
https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md#subscribetype
)
| 是 | 订阅类型。 |
| observer | Callback
<
Array
<
string
>>
| 是 | 指分布式数据库中数据更改事件的观察者。Array
<
string
>
为数据库中的数据发生改变的对端设备ID。 |
**示例:**
```
function storeObserver(devices) {
for (let i = 0; i < devices.length; i++) {
console.info(`device= ${devices[i]} data changed`);
}
}
try {
store.on('dataChange', relationalStore.SubscribeType.SUBSCRIBE_TYPE_REMOTE, storeObserver);
} catch (err) {
console.error(`Register observer failed, code is ${err.code},message is ${err.message}`);
}
```
### on('dataChange')<sup>10+</sup>
on(event: 'dataChange', type: SubscribeType, observer: Callback
<
Array
<
string
>>
\|
Callback
<
Array
<
ChangeInfo
>>
): void
注册数据库的数据变更的事件监听。当分布式数据库中的数据发生更改时,将调用回调。
...
...
@@ -3351,6 +3377,37 @@ try {
### off('dataChange')
off(event:'dataChange', type: SubscribeType, observer: Callback
<
Array
<
string
>>
): void
从数据库中删除指定类型的指定观察者, 使用callback异步回调。
**系统能力:**
SystemCapability.DistributedDataManager.RelationalStore.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| event | string | 是 | 取值为'dataChange',表示数据更改。 |
| type |
[
SubscribeType
](
https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md#subscribetype
)
| 是 | 订阅类型。 |
| observer | Callback
<
Array
<
string
>>
| 是 | 指已注册的数据更改观察者。Array
<
string
>
为数据库中的数据发生改变的对端设备ID。 |
**示例:**
```
function storeObserver(devices) {
for (let i = 0; i < devices.length; i++) {
console.info(`device= ${devices[i]} data changed`);
}
}
try {
store.off('dataChange', relationalStore.SubscribeType.SUBSCRIBE_TYPE_REMOTE, storeObserver);
} catch (err) {
console.error(`Unregister observer failed, code is ${err.code},message is ${err.message}`);
}
```
### off('dataChange')<sup>10+</sup>
off(event:'dataChange', type: SubscribeType, observer?: Callback
<
Array
<
string
>>
\|
Callback
<
Array
<
ChangeInfo
>>
): void
取消数据变更的事件监听。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录