Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
a17e2e9f
D
Docs
项目概览
OpenHarmony
/
Docs
大约 2 年 前同步成功
通知
161
Star
293
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看板
提交
a17e2e9f
编写于
3月 16, 2023
作者:
W
wangkai
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
change 1537
Signed-off-by:
N
wangkai
<
wangkai424@huawei.com
>
上级
e916ab09
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
52 addition
and
20 deletion
+52
-20
zh-cn/application-dev/reference/apis/js-apis-distributedKVStore.md
...lication-dev/reference/apis/js-apis-distributedKVStore.md
+52
-20
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-distributedKVStore.md
浏览文件 @
a17e2e9f
...
@@ -4513,10 +4513,24 @@ sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void
...
@@ -4513,10 +4513,24 @@ sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void
**示例:**
**示例:**
```
js
```
js
import
deviceManager
from
'
@ohos.distributedHardware.deviceManager
'
;
let
devManager
;
let
kvStore
;
let
kvStore
;
const
KEY_TEST_SYNC_ELEMENT
=
'
key_test_sync
'
;
const
KEY_TEST_SYNC_ELEMENT
=
'
key_test_sync
'
;
const
VALUE_TEST_SYNC_ELEMENT
=
'
value-string-001
'
;
const
VALUE_TEST_SYNC_ELEMENT
=
'
value-string-001
'
;
try
{
// create deviceManager
deviceManager
.
createDeviceManager
(
'
bundleName
'
,
(
err
,
value
)
=>
{
if
(
!
err
)
{
devManager
=
value
;
let
deviceIds
=
[];
if
(
devManager
!=
null
)
{
var
devices
=
devManager
.
getTrustedDeviceListSync
();
for
(
var
i
=
0
;
i
<
devices
.
length
;
i
++
)
{
deviceIds
[
i
]
=
devices
[
i
].
deviceId
;
}
}
try
{
kvStore
.
on
(
'
syncComplete
'
,
function
(
data
)
{
kvStore
.
on
(
'
syncComplete
'
,
function
(
data
)
{
console
.
log
(
'
Sync dataChange
'
);
console
.
log
(
'
Sync dataChange
'
);
});
});
...
@@ -4530,9 +4544,11 @@ try {
...
@@ -4530,9 +4544,11 @@ try {
const
mode
=
distributedKVStore
.
SyncMode
.
PULL_ONLY
;
const
mode
=
distributedKVStore
.
SyncMode
.
PULL_ONLY
;
kvStore
.
sync
(
devices
,
mode
,
1000
);
kvStore
.
sync
(
devices
,
mode
,
1000
);
});
});
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
error
(
`Fail to sync.code is
${
e
.
code
}
,message is
${
e
.
message
}
`
);
console
.
error
(
`Fail to sync.code is
${
e
.
code
}
,message is
${
e
.
message
}
`
);
}
}
}
});
```
```
### sync
### sync
...
@@ -4569,10 +4585,24 @@ sync(deviceIds: string[], query: Query, mode: SyncMode, delayMs?: number): void
...
@@ -4569,10 +4585,24 @@ sync(deviceIds: string[], query: Query, mode: SyncMode, delayMs?: number): void
**示例:**
**示例:**
```
js
```
js
import
deviceManager
from
'
@ohos.distributedHardware.deviceManager
'
;
let
devManager
;
let
kvStore
;
let
kvStore
;
const
KEY_TEST_SYNC_ELEMENT
=
'
key_test_sync
'
;
const
KEY_TEST_SYNC_ELEMENT
=
'
key_test_sync
'
;
const
VALUE_TEST_SYNC_ELEMENT
=
'
value-string-001
'
;
const
VALUE_TEST_SYNC_ELEMENT
=
'
value-string-001
'
;
try
{
// create deviceManager
deviceManager
.
createDeviceManager
(
'
bundleName
'
,
(
err
,
value
)
=>
{
if
(
!
err
)
{
devManager
=
value
;
let
deviceIds
=
[];
if
(
devManager
!=
null
)
{
var
devices
=
devManager
.
getTrustedDeviceListSync
();
for
(
var
i
=
0
;
i
<
devices
.
length
;
i
++
)
{
deviceIds
[
i
]
=
devices
[
i
].
deviceId
;
}
}
try
{
kvStore
.
on
(
'
syncComplete
'
,
function
(
data
)
{
kvStore
.
on
(
'
syncComplete
'
,
function
(
data
)
{
console
.
log
(
'
Sync dataChange
'
);
console
.
log
(
'
Sync dataChange
'
);
});
});
...
@@ -4589,9 +4619,11 @@ try {
...
@@ -4589,9 +4619,11 @@ try {
query
.
deviceId
(
'
localDeviceId
'
);
query
.
deviceId
(
'
localDeviceId
'
);
kvStore
.
sync
(
devices
,
query
,
mode
,
1000
);
kvStore
.
sync
(
devices
,
query
,
mode
,
1000
);
});
});
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
error
(
`Fail to sync.code is
${
e
.
code
}
,message is
${
e
.
message
}
`
);
console
.
error
(
`Fail to sync.code is
${
e
.
code
}
,message is
${
e
.
message
}
`
);
}
}
}
});
```
```
### on('dataChange')
### on('dataChange')
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录