Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
458ee0ca
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看板
提交
458ee0ca
编写于
1年前
作者:
R
renjiecui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modify doc
Signed-off-by:
N
renjiecui
<
cuirenjie@huawei.com
>
上级
9457b8ea
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
34 addition
and
33 deletion
+34
-33
zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md
...cation-dev/reference/apis/js-apis-data-relationalStore.md
+34
-33
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md
浏览文件 @
458ee0ca
...
...
@@ -3008,9 +3008,9 @@ promise.then(() => {
### setDistributedTables<sup>10+</sup>
setDistributedTables(tables: Array
<
string>, type?: number, config?: DistributedConfig): Promise
<
void>
setDistributedTables(tables: Array
<
string
>
, type: number, config: DistributedConfig, callback: AsyncCallback
<
void
>
): void
设置分布式列表,使用
Promise
异步回调。
设置分布式列表,使用
callback
异步回调。
**需要权限:**
ohos.permission.DISTRIBUTED_DATASYNC
...
...
@@ -3018,35 +3018,32 @@ promise.then(() => {
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------------------------------------------------------- | ---- | ------------------------------------------------------------ |
| 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,即只支持手动同步。 |
**返回值**
:
| 类型 | 说明 |
| ------------------- | ------------------------- |
| Promise
<
void
>
| 无返回结果的Promise对象。 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------- | --- | --------------- |
| tables | Array
<
string
>
| 是 | 要设置的分布式列表表名。 |
| type | number | 是 | 表的分布式类型。目前支持的入参值为: relationalStore.DistributedType.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回调函数。 |
**示例:**
```
js
let
config
=
new
DistributedConfig
();
config
.
autoSync
=
true
;
let
promise
=
store
.
setDistributedTables
([
"
EMPLOYEE
"
],
relationalStore
.
DistributedType
.
DISTRIBUTED_CLOUD
,
config
);
promise
.
then
(()
=>
{
store
.
setDistributedTables
([
"
EMPLOYEE
"
],
relationalStore
.
DistributedType
.
DISTRIBUTED_CLOUD
,
config
,
function
(
err
)
{
if
(
err
)
{
console
.
error
(
`SetDistributedTables failed, code is
${
err
.
code
}
,message is
${
err
.
message
}
`
);
return
;
}
console
.
info
(
`SetDistributedTables successfully.`
);
}).
catch
((
err
)
=>
{
console
.
error
(
`SetDistributedTables failed, code is
${
err
.
code
}
,message is
${
err
.
message
}
`
);
})
```
### setDistributedTables<sup>10+</sup>
setDistributedTables(tables: Array
<
string
>
, type: number, config: DistributedConfig, callback: AsyncCallback
<
void
>
): void
setDistributedTables(tables: Array
<
string>, type?: number, config?: DistributedConfig): Promise
<
void>
设置分布式列表,使用
callback
异步回调。
设置分布式列表,使用
Promise
异步回调。
**需要权限:**
ohos.permission.DISTRIBUTED_DATASYNC
...
...
@@ -3054,24 +3051,28 @@ setDistributedTables(tables: Array<string>, type: number, config: Distribu
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------- | --- | --------------- |
| tables | Array
<
string
>
| 是 | 要设置的分布式列表表名。 |
| 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回调函数。 |
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ----------------------------------------- | ---- | ------------------------------------------------------------ |
| tables | Array
<
string
>
| 是 | 要设置的分布式列表表名。 |
| type | number | 否 | 表的分布式类型。默认值是relationalStore.DistributedType.DISTRIBUTED_DEVICE。
<br>
目前支持的入参值为: relationalStore.DistributedType.DISTRIBUTED_DEVICE、relationalStore.DistributedType.DISTRIBUTED_CLOUD。
<br/>
当type为relationalStore.DistributedType.DISTRIBUTED_DEVICE时,表示表在不同设备之间分布式。
<br/>
当type为relationalStore.DistributedType.DISTRIBUTED_CLOUD时,表示表在设备和云端之间分布式。 |
| config |
[
DistributedConfig
](
#distributedconfig10
)
| 否 | 表的分布式配置信息。不传入时默认autoSync为false,即只支持手动同步。 |
**返回值**
:
| 类型 | 说明 |
| ------------------- | ------------------------- |
| Promise
<
void
>
| 无返回结果的Promise对象。 |
**示例:**
```
js
let
config
=
new
DistributedConfig
();
config
.
autoSync
=
true
;
store
.
setDistributedTables
([
"
EMPLOYEE
"
],
relationalStore
.
DistributedType
.
DISTRIBUTED_CLOUD
,
config
,
function
(
err
)
{
if
(
err
)
{
console
.
error
(
`SetDistributedTables failed, code is
${
err
.
code
}
,message is
${
err
.
message
}
`
);
return
;
}
let
promise
=
store
.
setDistributedTables
([
"
EMPLOYEE
"
],
relationalStore
.
DistributedType
.
DISTRIBUTED_CLOUD
,
config
);
promise
.
then
(()
=>
{
console
.
info
(
`SetDistributedTables successfully.`
);
}).
catch
((
err
)
=>
{
console
.
error
(
`SetDistributedTables failed, code is
${
err
.
code
}
,message is
${
err
.
message
}
`
);
})
```
...
...
@@ -3317,7 +3318,7 @@ promise.then((result) =>{
on(event: 'dataChange', type: SubscribeType, observer: Callback
<
Array
<
string
>>
): void
注册数据库的
观察者
。当分布式数据库中的数据发生更改时,将调用回调。
注册数据库的
数据变更的事件监听
。当分布式数据库中的数据发生更改时,将调用回调。
**系统能力:**
SystemCapability.DistributedDataManager.RelationalStore.Core
...
...
@@ -3358,7 +3359,7 @@ on(event: 'dataChange', type: SubscribeType, observer: Callback<Array<stri
| -------- | ----------------------------------- | ---- | ------------------------------------------- |
| event | string | 是 | 取值为'dataChange',表示数据更改。 |
| type |
[
SubscribeType
](
#subscribetype
)
| 是 | 订阅类型。 |
| observer | Callback
<
Array
<
string
>>
\|
Callback
<
Array
<
ChangeInfo
>>
<sup>
10+
</sup>
| 是 | 回调函数。
<br>
当type为SUBSCRIBE_TYPE_REMOTE,observer类型需为Callback
<
Array
<
string
>>
,其中Array
<
string
>
为数据库中的数据发生改变的对端设备ID。
<br>
当type为SUBSCRIBE_TYPE_CLOUD,observer类型需为Callback
<
Array
<
string
>>
,其中Array
<
string
>
为数据库中的数据发生改变的云端帐号。
<br>
当type为SUBSCRIBE_TYPE_CLOUD_DETAILS,observer类型需为Callback
<
Array
<
ChangeInfo
>>
,其中Array
<
ChangeInfo
>
为数据库端云同步过程的详情。 |
| observer | Callback
<
Array
<
string
>>
\|
Callback
<
Array
<
ChangeInfo
>>
| 是 | 回调函数。
<br>
当type为SUBSCRIBE_TYPE_REMOTE,observer类型需为Callback
<
Array
<
string
>>
,其中Array
<
string
>
为数据库中的数据发生改变的对端设备ID。
<br>
当type为SUBSCRIBE_TYPE_CLOUD,observer类型需为Callback
<
Array
<
string
>>
,其中Array
<
string
>
为数据库中的数据发生改变的云端帐号。
<br>
当type为SUBSCRIBE_TYPE_CLOUD_DETAILS,observer类型需为Callback
<
Array
<
ChangeInfo
>>
,其中Array
<
ChangeInfo
>
为数据库端云同步过程的详情。 |
**示例:**
...
...
@@ -3379,7 +3380,7 @@ try {
off(event:'dataChange', type: SubscribeType, observer: Callback
<
Array
<
string
>>
): void
从数据库中删除指定类型的指定观察者, 使用callback异步回调
。
取消数据变更的事件监听
。
**系统能力:**
SystemCapability.DistributedDataManager.RelationalStore.Core
...
...
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录