未验证 提交 e1dac755 编写于 作者: Z zyjhandsome 提交者: Gitee

update zh-cn/application-dev/application-models/common-event-subscription.md.

commonEvent修改为commonEventManager

start build
Signed-off-by: zyjhandsome's avatarzyjhandsome <zyjhandsome@126.com>
Signed-off-by: Nzyjhandsome <zhaoyingjun2@huawei.com>
上级 8e1e5e41
...@@ -19,10 +19,10 @@ ...@@ -19,10 +19,10 @@
## 开发步骤 ## 开发步骤
1. 导入CommonEvent模块。 1. 导入模块。
```ts ```ts
import commonEvent from '@ohos.commonEventManager'; import commonEventManager from '@ohos.commonEventManager';
``` ```
2. 创建订阅者信息,详细的订阅者信息数据类型及包含的参数请见[CommonEventSubscribeInfo](../reference/apis/js-apis-commonEventManager.md#commoneventsubscribeinfo)文档介绍。 2. 创建订阅者信息,详细的订阅者信息数据类型及包含的参数请见[CommonEventSubscribeInfo](../reference/apis/js-apis-commonEventManager.md#commoneventsubscribeinfo)文档介绍。
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
```ts ```ts
// 创建订阅者回调 // 创建订阅者回调
commonEvent.createSubscriber(subscribeInfo, (err, data) => { commonEventManager.createSubscriber(subscribeInfo, (err, data) => {
if (err) { if (err) {
console.error(`[CommonEvent] CreateSubscriberCallBack err=${JSON.stringify(err)}`); console.error(`[CommonEvent] CreateSubscriberCallBack err=${JSON.stringify(err)}`);
} else { } else {
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
```ts ```ts
// 订阅公共事件回调 // 订阅公共事件回调
if (subscriber !== null) { if (subscriber !== null) {
commonEvent.subscribe(subscriber, (err, data) => { commonEventManager.subscribe(subscriber, (err, data) => {
if (err) { if (err) {
console.error(`[CommonEvent] SubscribeCallBack err=${JSON.stringify(err)}`); console.error(`[CommonEvent] SubscribeCallBack err=${JSON.stringify(err)}`);
} else { } else {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册