Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
03f6a622
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看板
未验证
提交
03f6a622
编写于
3月 26, 2022
作者:
O
openharmony_ci
提交者:
Gitee
3月 26, 2022
浏览文件
操作
浏览文件
下载
差异文件
!2565 修复权限列表和链接
Merge pull request !2565 from zengsiyu/dev
上级
2419103f
0c2ffc13
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
11 addition
and
13 deletion
+11
-13
zh-cn/application-dev/notification/common-event.md
zh-cn/application-dev/notification/common-event.md
+1
-1
zh-cn/application-dev/reference/apis/js-apis-commonEvent.md
zh-cn/application-dev/reference/apis/js-apis-commonEvent.md
+10
-12
未找到文件。
zh-cn/application-dev/notification/common-event.md
浏览文件 @
03f6a622
...
...
@@ -13,7 +13,7 @@ OpenHarmony通过CES(Common Event Service,公共事件服务)为应用程
## 公共事件订阅开发指导
### 场景介绍
当需要订阅某个公共事件,获取某个公共事件传递的参数时,可以创建一个订阅者对象,用于作为订阅公共事件的载体,订阅公共事件并获取公共事件传递而来的参数。订阅部分系统公共事件需要先申请权限,订阅这些事件所需要的权限请见
[
公共事件权限列表
](
../reference/apis/js-apis-commonEvent.md#
Support
)
。
当需要订阅某个公共事件,获取某个公共事件传递的参数时,可以创建一个订阅者对象,用于作为订阅公共事件的载体,订阅公共事件并获取公共事件传递而来的参数。订阅部分系统公共事件需要先申请权限,订阅这些事件所需要的权限请见
[
公共事件权限列表
](
../reference/apis/js-apis-commonEvent.md#
权限列表
)
。
### 接口说明
| 接口名 | 接口描述 |
...
...
zh-cn/application-dev/reference/apis/js-apis-commonEvent.md
浏览文件 @
03f6a622
...
...
@@ -3,9 +3,7 @@
> **说明:**
> 本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
## Support
权限列表。
## 权限列表
| 系统公共事件宏 | 系统公共事件名称 | 订阅者所需权限 |
| ------------ | ------------------ | ---------------------- |
...
...
@@ -210,7 +208,7 @@ publish(event: string, options: CommonEventPublishData, callback: AsyncCallback\
| 名称 | 读写属性 | 类型 | 必填 | 描述 |
| -------- | -------- | ---------------------- | ---- | ---------------------- |
| event | 只读 | string | 是 | 表示要发布的公共事件。 |
| options | 只读 |
[
CommonEventPublishData
](
#commoneventpublishdata
)
| 是 | 表示发布公共事件的属性。 |
| options | 只读 |
[
CommonEventPublishData
](
./js-apis-commonEventPublishData.md
)
| 是 | 表示发布公共事件的属性。 |
| callback | 只读 | AsyncCallback
\<
void> | 是 | 表示被指定的回调方法。 |
**示例:**
...
...
@@ -290,7 +288,7 @@ publishAsUser(event: string, userId: number, options: CommonEventPublishData, ca
| -------- | -------- | ---------------------- | ---- | ---------------------- |
| event | 只读 | string | 是 | 表示要发布的公共事件。 |
| userId | 只读 | number | 是 | 表示指定向该用户ID发送此公共事件。 |
| options | 只读 |
[
CommonEventPublishData
](
#commoneventpublishdata
)
| 是 | 表示发布公共事件的属性。 |
| options | 只读 |
[
CommonEventPublishData
](
./js-apis-commonEventPublishData.md
)
| 是 | 表示发布公共事件的属性。 |
| callback | 只读 | AsyncCallback
\<
void> | 是 | 表示被指定的回调方法。 |
**示例:**
...
...
@@ -333,8 +331,8 @@ createSubscriber(subscribeInfo: CommonEventSubscribeInfo, callback: AsyncCallbac
| 名称 | 读写属性 | 类型 | 必填 | 描述 |
| ------------- | -------- | ------------------------------------------------------------ | ---- | -------------------------- |
| subscribeInfo | 只读 |
[
CommonEventSubscribeInfo
](
#commoneventsubscribeinfo
)
| 是 | 表示订阅信息。 |
| callback | 只读 | AsyncCallback
\<
[
CommonEventSubscriber
](
#commoneventsubscriber
)
> | 是 | 表示创建订阅者的回调方法。 |
| subscribeInfo | 只读 |
[
CommonEventSubscribeInfo
](
./js-apis-commonEventSubscribeInfo.md
)
| 是 | 表示订阅信息。 |
| callback | 只读 | AsyncCallback
\<
[
CommonEventSubscriber
](
./js-apis-commonEventSubscriber.md
)
> | 是 | 表示创建订阅者的回调方法。 |
**示例:**
...
...
@@ -375,12 +373,12 @@ createSubscriber(subscribeInfo: CommonEventSubscribeInfo): Promise\<CommonEventS
| 名称 | 读写属性 | 类型 | 必填 | 描述 |
| ------------- | -------- | ----------------------------------------------------- | ---- | -------------- |
| subscribeInfo | 只读 |
[
CommonEventSubscribeInfo
](
#commoneventsubscribeinfo
)
| 是 | 表示订阅信息。 |
| subscribeInfo | 只读 |
[
CommonEventSubscribeInfo
](
./js-apis-commonEventSubscribeInfo.md
)
| 是 | 表示订阅信息。 |
**返回值:**
| 类型 | 说明 |
| --------------------------------------------------------- | ---------------- |
| Promise
\<
[
CommonEventSubscriber
](
#commoneventsubscriber
)
> | 返回订阅者对象。 |
| Promise
\<
[
CommonEventSubscriber
](
./js-apis-commonEventSubscriber.md
)
> | 返回订阅者对象。 |
**示例:**
...
...
@@ -415,8 +413,8 @@ subscribe(subscriber: CommonEventSubscriber, callback: AsyncCallback\<CommonEven
| 名称 | 读写属性 | 类型 | 必填 | 描述 |
| ---------- | -------- | --------------------------------------------------- | ---- | -------------------------------- |
| subscriber | 只读 |
[
CommonEventSubscriber
](
#commoneventsubscriber
)
| 是 | 表示订阅者对象。 |
| callback | 只读 | AsyncCallback
\<
[
CommonEventData
](
#commoneventdata
)
> | 是 | 表示接收公共事件数据的回调函数。 |
| subscriber | 只读 |
[
CommonEventSubscriber
](
./js-apis-commonEventSubscriber.md
)
| 是 | 表示订阅者对象。 |
| callback | 只读 | AsyncCallback
\<
[
CommonEventData
](
./js-apis-commonEventData.md
)
> | 是 | 表示接收公共事件数据的回调函数。 |
**示例:**
...
...
@@ -453,7 +451,7 @@ function CreateSubscriberCallBack(err, commonEventSubscriber) {
CommonEvent
.
createSubscriber
(
subscribeInfo
,
CreateSubscriberCallBack
);
```
## CommonEvent.unsubscribe
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录