Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
36c22834
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,发现更多精彩内容 >>
提交
36c22834
编写于
7月 11, 2023
作者:
R
renjiecui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modify doc
Signed-off-by:
N
renjiecui
<
cuirenjie@huawei.com
>
上级
325b80a4
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
16 addition
and
16 deletion
+16
-16
zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md
...cation-dev/reference/apis/js-apis-data-relationalStore.md
+16
-16
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md
浏览文件 @
36c22834
...
...
@@ -407,9 +407,9 @@ class EntryAbility extends UIAbility {
**系统能力:**
SystemCapability.DistributedDataManager.RelationalStore.Core
| 类型 | 说明 |
| -------------- | ---------------------------------- |
| number
\|
string | 主键的类型可以是number或者string。 |
| 类型
| 说明 |
| --------------
--
| ---------------------------------- |
| number
\|
string | 主键的类型可以是number或者string。 |
## UTCTime<sup>10+</sup>
...
...
@@ -572,7 +572,7 @@ class EntryAbility extends UIAbility {
## ProgressDetails<sup>10+</sup>
描述数据库
表
执行端云同步任务上传和下载的统计信息。
描述数据库
整体
执行端云同步任务上传和下载的统计信息。
**系统能力:**
SystemCapability.DistributedDataManager.RelationalStore.Core
...
...
@@ -3493,7 +3493,7 @@ promise.then((result) =>{
cloudSync(mode: SyncMode, progress: Callback
<
ProgressDetails
>
, callback: AsyncCallback
<
void
>
): void
手动执行对所有分布式表的端云同步,使用callback异步回调。
手动执行对所有分布式表的端云同步,使用callback异步回调。
使用该接口需要实现云服务功能。
**需要权限:**
ohos.permission.DISTRIBUTED_DATASYNC
...
...
@@ -3503,7 +3503,7 @@ cloudSync(mode: SyncMode, progress: Callback<ProgressDetails>, callback: A
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------------------------- | ---- | -------------------------------------------------- |
| mode |
[
SyncMode
](
#syncmode
)
| 是 | 表示
数据库
的同步模式。 |
| mode |
[
SyncMode
](
#syncmode
)
| 是 | 表示
分布式表
的同步模式。 |
| progress | Callback
<
[ProgressDetails](#progressdetails10)
>
| 是 | 用来处理数据库同步详细信息的回调函数。 |
| callback | AsyncCallback
<
void
>
| 是 | 指定的callback回调函数,用于向调用者发送同步结果。 |
...
...
@@ -3525,7 +3525,7 @@ relationalStore.cloudSync(relatioanalStore.SyncMode.SYNC_MODE_CLOUD_FIRST, funct
cloudSync(mode: SyncMode, progress: Callback
<
ProgressDetails
>
): Promise
<
void
>
手动执行对所有分布式表的端云同步,使用
promise异步回调
。
手动执行对所有分布式表的端云同步,使用
Promise异步回调。使用该接口需要实现云服务功能
。
**需要权限:**
ohos.permission.DISTRIBUTED_DATASYNC
...
...
@@ -3547,8 +3547,8 @@ cloudSync(mode: SyncMode, progress: Callback<ProgressDetails>): Promise<
**示例:**
```
js
function
Progess
(
P
rogressDetail
)
{
console
.
info
(
`Progess:
${
P
rogressDetail
}
`
);
function
Progess
(
p
rogressDetail
)
{
console
.
info
(
`Progess:
${
p
rogressDetail
}
`
);
}
relationalStore
.
cloudSync
(
relatioanalStore
.
SyncMode
.
SYNC_MODE_CLOUD_FIRST
,
Progess
).
then
(()
=>
{
...
...
@@ -3562,7 +3562,7 @@ relationalStore.cloudSync(relatioanalStore.SyncMode.SYNC_MODE_CLOUD_FIRST, Proge
cloudSync(mode: SyncMode, tables: string[], progress: Callback
<
ProgressDetails
>
, callback: AsyncCallback
<
void
>
): void
手动执行对指定表的端云同步,使用callback异步回调。
手动执行对指定表的端云同步,使用callback异步回调。
使用该接口需要实现云服务功能。
**需要权限:**
ohos.permission.DISTRIBUTED_DATASYNC
...
...
@@ -3594,9 +3594,9 @@ relationalStore.cloudSync(relatioanalStore.SyncMode.SYNC_MODE_CLOUD_FIRST, table
### cloudSync<sup>10+</sup>
cloudSync(mode: SyncMode, progress: Callback
<
ProgressDetails
>
): Promise
<
void
>
cloudSync(mode: SyncMode,
tables: string[],
progress: Callback
<
ProgressDetails
>
): Promise
<
void
>
手动执行对指定表的端云同步,使用
promise异步回调
。
手动执行对指定表的端云同步,使用
Promise异步回调。使用该接口需要实现云服务功能
。
**需要权限:**
ohos.permission.DISTRIBUTED_DATASYNC
...
...
@@ -3618,10 +3618,10 @@ cloudSync(mode: SyncMode, progress: Callback<ProgressDetails>): Promise<
**示例:**
```
```
js
const
tables
=
[
"
table1
"
,
"
table2
"
];
function Progess(
P
rogressDetail) {
console.info(`Progess: ${
P
rogressDetail}`);
function
Progess
(
p
rogressDetail
)
{
console
.
info
(
`Progess:
${
p
rogressDetail
}
`
);
}
relationalStore
.
cloudSync
(
relatioanalStore
.
SyncMode
.
SYNC_MODE_CLOUD_FIRST
,
tables
,
Progess
).
then
(()
=>
{
...
...
@@ -3649,7 +3649,7 @@ on(event: 'dataChange', type: SubscribeType, observer: Callback<Array<stri
**示例:**
```
```
js
function
storeObserver
(
devices
)
{
for
(
let
i
=
0
;
i
<
devices
.
length
;
i
++
)
{
console
.
info
(
`device=
${
devices
[
i
]}
data changed`
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录