Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
56552e00
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看板
未验证
提交
56552e00
编写于
5月 25, 2023
作者:
O
openharmony_ci
提交者:
Gitee
5月 25, 2023
浏览文件
操作
浏览文件
下载
差异文件
!18143 端云新增文档
Merge pull request !18143 from 杨青/master
上级
0ff783a4
7977d271
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
349 addition
and
0 deletion
+349
-0
zh-cn/application-dev/reference/apis/js-apis-data-cloudData.md
.../application-dev/reference/apis/js-apis-data-cloudData.md
+349
-0
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-data-cloudData.md
0 → 100644
浏览文件 @
56552e00
# @ohos.data.cloudData (端云协同)
端云协同提供结构化数据(RDB Store)端云同步的能力。即:云作为数据的中心节点,通过与云的数据同步,实现数据云备份、同账号设备间的数据一致性。
该模块提供以下端云协同相关的常用功能:
-
[
Config
](
#config
)
:提供配置端云协同的方法,包括云同步打开、关闭、清理数据、数据变化通知。
> **说明:**
>
> 本模块首批接口从API version 10开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
## 导入模块
```
js
import
cloudData
from
'
@ohos.data.cloudData
'
;
```
## Action
清除本地数据云信息的行为枚举。
**系统接口:**
此接口为系统接口。
**系统能力:**
SystemCapability.DistributedDataManager.CloudSync.Config
| 名称 | 说明 |
| --------- | ---------------------------- |
| CLEAR_CLOUD_INFO | 清除云标识信息。 |
| CLEAR_CLOUD_DATA_AND_INFO |清除所有云相关数据,包括云标识信息以及从云端下载的数据(不包括本地已修改或生成的数据)。 |
## Config
提供配置端云协同的方法,包括云同步打开、关闭、清理数据、数据变化通知。
### enableCloud
static enableCloud(accountId: string, switches: {[bundleName: string]: boolean}, callback: AsyncCallback
<
void
>
):void
打开端云协同,使用callback异步回调。
**系统接口:**
此接口为系统接口。
**需要权限**
:ohos.permission.CLOUDDATA_CONFIG
**系统能力:**
SystemCapability.DistributedDataManager.CloudSync.Config
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| --------- | ------------------------------- | ---- | ------------------------------------------------------------ |
| accountId | string | 是 | 具体打开的云ID。 |
| switches | {[bundleName: string]: boolean} | 是 | 各应用的端云协同开关信息,true为打开该应用端云开关,false为关闭该应用端云开关。 |
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。 |
**示例:**
```
js
let
account
=
'
test_id
'
;
let
switches
=
{
'
test_bundleName1
'
:
true
,
'
test_bundleName2
'
:
false
};
try
{
cloudData
.
Config
.
enableCloud
(
account
,
switches
,
function
(
err
)
{
if
(
err
===
undefined
)
{
console
.
info
(
'
Succeeded in enabling cloud
'
);
}
else
{
console
.
error
(
`Failed to enable.Code:
${
err
.
code
}
, message:
${
err
.
message
}
`
);
}
});
}
catch
(
error
)
{
console
.
error
(
`An unexpected error occurred. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
}
```
### enableCloud
static enableCloud(accountId: string, switches: {[bundleName: string]: boolean}): Promise
<
void
>
打开端云协同,使用Promise异步回调。
**系统接口:**
此接口为系统接口。
**需要权限**
:ohos.permission.CLOUDDATA_CONFIG
**系统能力:**
SystemCapability.DistributedDataManager.CloudSync.Config
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| --------- | ------------------------------- | ---- | ------------------------------------------------------------ |
| accountId | string | 是 | 具体打开的云ID。 |
| switches | {[bundleName: string]: boolean} | 是 | 各应用的端云协同开关信息,true为打开该应用端云开关,false为关闭该应用端云开关。 |
**返回值:**
| 类型 | 说明 |
| ------------------- | ------------------------- |
| Promise
<
void
>
| 无返回结果的Promise对象。 |
**示例:**
```
js
let
account
=
'
test_id
'
;
let
switches
=
{
'
test_bundleName1
'
:
true
,
'
test_bundleName2
'
:
false
};
try
{
cloudData
.
Config
.
enableCloud
(
account
,
switches
).
then
(()
=>
{
console
.
info
(
'
Succeeded in enabling cloud
'
);
}).
catch
((
err
)
=>
{
console
.
error
(
`Failed to enable.Code:
${
err
.
code
}
, message:
${
err
.
message
}
`
);
});
}
catch
(
error
)
{
console
.
error
(
`An unexpected error occurred. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
}
```
### disableCloud
static disableCloud(accountId: string, callback: AsyncCallback
<
void
>
):void
关闭端云协同,使用callback异步回调。
**系统接口:**
此接口为系统接口。
**需要权限**
:ohos.permission.CLOUDDATA_CONFIG
**系统能力:**
SystemCapability.DistributedDataManager.CloudSync.Config
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| --------- | ------------------------- | ---- | ---------------- |
| accountId | string | 是 | 具体打开的云ID。 |
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。 |
**示例:**
```
js
let
account
=
'
test_id
'
;
try
{
cloudData
.
Config
.
disableCloud
(
account
,
function
(
err
)
{
if
(
err
===
undefined
)
{
console
.
info
(
'
Succeeded in disabling cloud
'
);
}
else
{
console
.
error
(
`Failed to disableCloud. Code:
${
err
.
code
}
, message:
${
err
.
message
}
`
);
}
});
}
catch
(
error
)
{
console
.
error
(
`An unexpected error occurred. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
}
```
### disableCloud
static disableCloud(accountId: string): Promise
<
void
>
关闭端云协同,使用Promise异步回调。
**系统接口:**
此接口为系统接口。
**需要权限**
:ohos.permission.CLOUDDATA_CONFIG
**系统能力:**
SystemCapability.DistributedDataManager.CloudSync.Config
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| --------- | ------ | ---- | ---------------- |
| accountId | string | 是 | 具体打开的云ID。 |
**返回值:**
| 类型 | 说明 |
| ------------------- | ------------------------- |
| Promise
<
void
>
| 无返回结果的Promise对象。 |
**示例:**
```
js
let
account
=
'
test_id
'
;
try
{
cloudData
.
Config
.
disableCloud
(
account
).
then
(()
=>
{
console
.
info
(
'
Succeeded in disabling cloud
'
);
}).
catch
((
err
)
=>
{
console
.
error
(
`Failed to disableCloud. Code:
${
err
.
code
}
, message:
${
err
.
message
}
`
);
});
}
catch
(
error
)
{
console
.
error
(
`An unexpected error occurred. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
}
```
### changeAppCloudSwitch
static changeAppCloudSwitch(accountId: string,bundleName:string,status:boolean, callback: AsyncCallback
<
void
>
):void
修改单个应用端云协同开关,使用callback异步回调。
**系统接口:**
此接口为系统接口。
**需要权限**
:ohos.permission.CLOUDDATA_CONFIG
**系统能力:**
SystemCapability.DistributedDataManager.CloudSync.Config
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| --------- | ------------------------------- | ---- | ---------------------------- |
| accountId | string | 是 | 具体打开的云ID。 |
| bundleName| string | 是 | 应用名 |
| status | boolean | 是 | 应用的端云协同开关信息,true为打开该应用端云开关,false为关闭该应用端云开关。 |
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。 |
**示例:**
```
js
let
account
=
'
test_id
'
;
let
bundleName
=
'
test_bundleName
'
;
try
{
cloudData
.
Config
.
changeAppCloudSwitch
(
account
,
bundleName
,
true
,
function
(
err
)
{
if
(
err
===
undefined
)
{
console
.
info
(
'
Succeeded in changing App cloud switch
'
);
}
else
{
console
.
error
(
`Failed to change App cloud switch. Code:
${
err
.
code
}
, message:
${
err
.
message
}
`
);
}
});
}
catch
(
error
)
{
console
.
error
(
`An unexpected error occurred. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
}
```
### changeAppCloudSwitch
static changeAppCloudSwitch(accountId: string,bundleName:string,status:boolean): Promise
<
void
>
修改单个应用端云协同开关,使用Promise异步回调。
**系统接口:**
此接口为系统接口。
**需要权限**
:ohos.permission.CLOUDDATA_CONFIG
**系统能力:**
SystemCapability.DistributedDataManager.CloudSync.Config
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| --------- | ------------------------------- | ---- | ---------------------------- |
| accountId | string | 是 | 具体打开的云ID。 |
| bundleName| string | 是 | 应用名 |
| status | boolean | 是 | 应用的端云协同开关信息,true为打开该应用端云开关,false为关闭该应用端云开关。 |
**返回值:**
| 类型 | 说明 |
| ------------------- | ------------------------- |
| Promise
<
void
>
| 无返回结果的Promise对象。 |
**示例:**
```
js
let
account
=
'
test_id
'
;
let
bundleName
=
'
test_bundleName
'
;
try
{
cloudData
.
Config
.
changeAppCloudSwitch
(
account
,
bundleName
,
true
).
then
(()
=>
{
console
.
info
(
'
Succeeded in changing App cloud switch
'
);
}).
catch
((
err
)
=>
{
console
.
error
(
`Failed to change App cloud switch. Code is
${
err
.
code
}
, message is
${
err
.
message
}
`
);
});
}
catch
(
error
)
{
console
.
error
(
`An unexpected error occurred. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
}
```
### notifyDataChange
static notifyDataChange(accountId: string,bundleName:string, callback: AsyncCallback
<
void
>
):void
通知云端的数据变更,使用callback异步回调。
**系统接口:**
此接口为系统接口。
**需要权限**
:ohos.permission.CLOUDDATA_CONFIG
**系统能力:**
SystemCapability.DistributedDataManager.CloudSync.Server
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ---------- | ------------------------- | ---- | ---------------- |
| accountId | string | 是 | 具体打开的云ID。 |
| bundleName | string | 是 | 应用名 |
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。 |
**示例:**
```
js
let
account
=
'
test_id
'
;
let
bundleName
=
'
test_bundleName
'
;
try
{
cloudData
.
Config
.
notifyDataChange
(
account
,
bundleName
,
function
(
err
)
{
if
(
err
===
undefined
)
{
console
.
info
(
'
Succeeded in notifying the change of data
'
);
}
else
{
console
.
error
(
`Failed to notify the change of data. Code:
${
err
.
code
}
, message:
${
err
.
message
}
`
);
}
});
}
catch
(
error
)
{
console
.
error
(
`An unexpected error occurred. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
}
```
### notifyDataChange
static notifyDataChange(accountId: string,bundleName:string): Promise
<
void
>
通知云端的数据变更,使用Promise异步回调。
**系统接口:**
此接口为系统接口。
**需要权限**
:ohos.permission.CLOUDDATA_CONFIG
**系统能力:**
SystemCapability.DistributedDataManager.CloudSync.Server
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ---------- | ------ | ---- | ---------------- |
| accountId | string | 是 | 具体打开的云ID。 |
| bundleName | string | 是 | 应用名 |
**返回值:**
| 类型 | 说明 |
| ------------------- | ------------------------- |
| Promise
<
void
>
| 无返回结果的Promise对象。 |
**示例:**
```
js
let
account
=
'
test_id
'
;
let
bundleName
=
'
test_bundleName
'
;
try
{
cloudData
.
Config
.
notifyDataChange
(
account
,
bundleName
).
then
(()
=>
{
console
.
info
(
'
Succeeded in notifying the change of data
'
);
}).
catch
((
err
)
=>
{
console
.
error
(
`Failed to notify the change of data. Code:
${
err
.
code
}
, message:
${
err
.
message
}
`
);
});
}
catch
(
error
)
{
console
.
error
(
`An unexpected error occurred. Code:
${
error
.
code
}
, message:
${
error
.
message
}
`
);
}
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录