Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
5f256391
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看板
提交
5f256391
编写于
9月 30, 2022
作者:
F
fangyun
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add new api interface doc
Signed-off-by:
N
fangyun
<
fangyun2@huawei.com
>
上级
f369b1a6
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
152 addition
and
0 deletion
+152
-0
zh-cn/application-dev/reference/apis/js-apis-enterprise-device-manager.md
...n-dev/reference/apis/js-apis-enterprise-device-manager.md
+152
-0
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-enterprise-device-manager.md
浏览文件 @
5f256391
...
...
@@ -665,6 +665,146 @@ enterpriseDeviceManager.getEnterpriseInfo(wantTemp).then((result) => {
});
```
## enterpriseDeviceManager.subscribeManagedEvent
subscribeManagedEvent(admin: Want, managedEvents: Array
\<
ManagedEvent>, callback: AsyncCallback
\<
void>): void;
订阅系统事件。使用callback异步回调。
**需要权限:**
ohos.permission.MANAGE_ENTERPRISE_DEVICE_ADMIN
**系统能力:**
SystemCapability.Customization.EnterpriseDeviceManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ----- | ----------------------------------- | ---- | ------- |
| admin |
[
Want
](
js-apis-application-Want.md
)
| 是 | 设备管理员应用。 |
| managedEvents | Array
\<
[
ManagedEvent
](
#managedEvent
)
> | 是 | 订阅事件数组。 |
| callback | AsyncCallback
\<
void> | 是 | 回调函数。当系统事件订阅成功err为null,否则为错误对象。 |
**示例:**
```
js
let
wantTemp
=
{
bundleName
:
"
bundleName
"
,
abilityName
:
"
abilityName
"
,
};
let
events
=
[
0
,
1
];
enterpriseDeviceManager
.
subscribeManagedEvent
(
wantTemp
,
events
,
(
error
)
=>
{
if
(
error
)
{
console
.
log
(
"
error code:
"
+
error
.
code
+
"
error message:
"
+
error
.
message
);
}
});
```
## enterpriseDeviceManager.subscribeManagedEvent
subscribeManagedEvent(admin: Want, managedEvents: Array
\<
ManagedEvent>): Promise
\<
void>;
订阅系统事件。使用Promise异步回调。
**需要权限:**
ohos.permission.MANAGE_ENTERPRISE_DEVICE_ADMIN
**系统能力:**
SystemCapability.Customization.EnterpriseDeviceManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ----- | ----------------------------------- | ---- | ------- |
| admin |
[
Want
](
js-apis-application-Want.md
)
| 是 | 设备管理员应用。 |
| managedEvents | Array
\<
[
ManagedEvent
](
#managedEvent
)
> | 是 | 订阅事件数组。 |
**返回值:**
| 类型 | 说明 |
| ----- | ----------------------------------- |
| Promise
\<
void> | Promise对象。无返回结果的Promise对象。 |
**示例:**
```
js
let
wantTemp
=
{
bundleName
:
"
bundleName
"
,
abilityName
:
"
abilityName
"
,
};
let
events
=
[
0
,
1
];
enterpriseDeviceManager
.
subscribeManagedEvent
(
wantTemp
,
events
).
then
(()
=>
{
}).
catch
((
error
)
=>
{
console
.
log
(
"
error code:
"
+
error
.
code
+
"
error message:
"
+
error
.
message
);
})
```
## enterpriseDeviceManager.unsubscribeManagedEvent
unsubscribeManagedEvent(admin: Want, managedEvents: Array
\<
ManagedEvent>, callback: AsyncCallback
\<
void>): void;
取消订阅系统事件。使用callback异步回调。
**需要权限:**
ohos.permission.MANAGE_ENTERPRISE_DEVICE_ADMIN
**系统能力:**
SystemCapability.Customization.EnterpriseDeviceManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ----- | ----------------------------------- | ---- | ------- |
| admin |
[
Want
](
js-apis-application-Want.md
)
| 是 | 设备管理员应用。 |
| managedEvents | Array
\<
[
ManagedEvent
](
#managedEvent
)
> | 是 | 取消订阅事件数组。 |
| callback | AsyncCallback
\<
void> | 是 | 回调函数。当系统事件取消订阅成功err为null,否则为错误对象。 |
**示例:**
```
js
let
wantTemp
=
{
bundleName
:
"
bundleName
"
,
abilityName
:
"
abilityName
"
,
};
let
events
=
[
0
,
1
];
enterpriseDeviceManager
.
unsubscribeManagedEvent
(
wantTemp
,
events
,
(
error
)
=>
{
if
(
error
)
{
console
.
log
(
"
error code:
"
+
error
.
code
+
"
error message:
"
+
error
.
message
);
}
});
```
## enterpriseDeviceManager.unsubscribeManagedEvent
unsubscribeManagedEvent(admin: Want, managedEvents: Array
\<
ManagedEvent>): Promise
\<
void>;
取消订阅系统事件。使用callback异步回调。
**需要权限:**
ohos.permission.MANAGE_ENTERPRISE_DEVICE_ADMIN
**系统能力:**
SystemCapability.Customization.EnterpriseDeviceManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ----- | ----------------------------------- | ---- | ------- |
| admin |
[
Want
](
js-apis-application-Want.md
)
| 是 | 设备管理员应用。 |
| managedEvents | Array
\<
[
ManagedEvent
](
#managedEvent
)
> | 是 | 取消订阅事件数组。 |
**返回值:**
| 类型 | 说明 |
| ----- | ----------------------------------- |
| Promise
\<
void> | Promise对象。无返回结果的Promise对象。 |
**示例:**
```
js
let
wantTemp
=
{
bundleName
:
"
bundleName
"
,
abilityName
:
"
abilityName
"
,
};
let
events
=
[
0
,
1
];
enterpriseDeviceManager
.
unsubscribeManagedEvent
(
wantTemp
,
events
).
then
(()
=>
{
}).
catch
((
error
)
=>
{
console
.
log
(
"
error code:
"
+
error
.
code
+
"
error message:
"
+
error
.
message
);
})
```
## EnterpriseInfo
设备管理员应用的企业信息
...
...
@@ -686,3 +826,15 @@ enterpriseDeviceManager.getEnterpriseInfo(wantTemp).then((result) => {
| ----------------- | ---- | ----- |
| ADMIN_TYPE_NORMAL | 0x00 | 普通管理员 |
| ADMIN_TYPE_SUPER | 0x01 | 超级管理员 |
## ManagedEvent
可订阅系统事件。
**系统能力:**
SystemCapability.Customization.EnterpriseDeviceManager
| 名称 | 默认值 | 说明 |
| ----------------- | ---- | ----- |
| MANAGED_EVENT_BUNDLE_ADDED | 0 | 应用安装事件。 |
| MANAGED_EVENT_BUNDLE_REMOVED | 2 | 应用卸载事件。 |
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录