未验证 提交 a0ec609e 编写于 作者: O openharmony_ci 提交者: Gitee

!1923 Fix format issues of notification api

Merge pull request !1923 from xuzhihao/master
......@@ -8,12 +8,6 @@
import emitter from '@ohos.events.emitter'
```
## 系统能力
```javascript
SystemCapability.Notification.Emitter
```
## 权限列表
......@@ -24,10 +18,10 @@ SystemCapability.Notification.Emitter
| 名称 | 值 | 说明 |
| --------- | ---- | ------------------------------------------------- |
| IMMEDIATE | 0 | 表示事件被立即投递 |
| HIGH | 1 | 表示事件先于LOW优先级投递 |
| LOW | 2 | 表示事件优于IDLE优先级投递,事件的默认优先级是LOW |
| IDLE | 3 | 表示在没有其他事件的情况下,才投递该事件 |
| IMMEDIATE | 0 | 表示事件被立即投递<br/>**系统能力**: SystemCapability.Notification.Emitter |
| HIGH | 1 | 表示事件先于LOW优先级投递<br/>**系统能力**: SystemCapability.Notification.Emitter |
| LOW | 2 | 表示事件优于IDLE优先级投递,事件的默认优先级是LOW<br/>**系统能力**: SystemCapability.Notification.Emitter |
| IDLE | 3 | 表示在没有其他事件的情况下,才投递该事件<br/>**系统能力**: SystemCapability.Notification.Emitter |
## emitter.on
......@@ -35,6 +29,8 @@ on(event: [InnerEvent](#innerevent), callback: Callback\<[EventData](#eventdata)
持续订阅某个事件以及接收事件的回调处理。
**系统能力**: SystemCapability.Notification.Emitter
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
......@@ -60,6 +56,8 @@ once(event: [InnerEvent](#innerevent), callback: Callback\<[EventData](#eventdat
单次订阅某个事件以及接收事件的回调处理,接收到回调处理后自动取消订阅。
**系统能力**: SystemCapability.Notification.Emitter
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
......@@ -85,6 +83,8 @@ off(eventId: number): void
取消订阅某个事件。
**系统能力**: SystemCapability.Notification.Emitter
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
......@@ -103,6 +103,8 @@ emit(event: InnerEvent, data?: EventData): void
发送一个事件到事件队列。
**系统能力**: SystemCapability.Notification.Emitter
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
......@@ -131,8 +133,8 @@ emitter.emit(innerEvent, eventData);
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | ------------------------------- | ---- | ---- | ---------------------------------- |
| eventId | number | 是 | 是 | 事件的ID,由开发者定义用来辨别事件 |
| priority | [EventPriority](#eventpriority) | 是 | 是 | 事件被投递的优先级 |
| eventId | number | 是 | 是 | 事件的ID,由开发者定义用来辨别事件<br/>**系统能力**: SystemCapability.Notification.Emitter |
| priority | [EventPriority](#eventpriority) | 是 | 是 | 事件被投递的优先级<br/>**系统能力**: SystemCapability.Notification.Emitter |
## EventData
......@@ -140,4 +142,4 @@ emitter.emit(innerEvent, eventData);
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| ---- | ------------------ | ---- | ---- | -------------- |
| data | [key: string]: any | 是 | 是 | 事件携带的数据 |
| data | [key: string]: any | 是 | 是 | 发送事件时传递的数据,数据类型支持字符串、整型和布尔型。<br/>**系统能力**: SystemCapability.Notification.Emitter |
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册