提交 1b4fa2b1 编写于 作者: X xuzhihao

Fix format issues of notification api

Signed-off-by: Nxuzhihao <xuzhihao16@huawei.com>
上级 6ce7f373
...@@ -8,12 +8,6 @@ ...@@ -8,12 +8,6 @@
import emitter from '@ohos.events.emitter' import emitter from '@ohos.events.emitter'
``` ```
## 系统能力
```javascript
SystemCapability.Notification.Emitter
```
## 权限列表 ## 权限列表
...@@ -24,10 +18,10 @@ SystemCapability.Notification.Emitter ...@@ -24,10 +18,10 @@ SystemCapability.Notification.Emitter
| 名称 | 值 | 说明 | | 名称 | 值 | 说明 |
| --------- | ---- | ------------------------------------------------- | | --------- | ---- | ------------------------------------------------- |
| IMMEDIATE | 0 | 表示事件被立即投递 | | IMMEDIATE | 0 | 表示事件被立即投递<br/>**系统能力**: SystemCapability.Notification.Emitter |
| HIGH | 1 | 表示事件先于LOW优先级投递 | | HIGH | 1 | 表示事件先于LOW优先级投递<br/>**系统能力**: SystemCapability.Notification.Emitter |
| LOW | 2 | 表示事件优于IDLE优先级投递,事件的默认优先级是LOW | | LOW | 2 | 表示事件优于IDLE优先级投递,事件的默认优先级是LOW<br/>**系统能力**: SystemCapability.Notification.Emitter |
| IDLE | 3 | 表示在没有其他事件的情况下,才投递该事件 | | IDLE | 3 | 表示在没有其他事件的情况下,才投递该事件<br/>**系统能力**: SystemCapability.Notification.Emitter |
## emitter.on ## emitter.on
...@@ -35,6 +29,8 @@ on(event: [InnerEvent](#innerevent), callback: Callback\<[EventData](#eventdata) ...@@ -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 ...@@ -60,6 +56,8 @@ once(event: [InnerEvent](#innerevent), callback: Callback\<[EventData](#eventdat
单次订阅某个事件以及接收事件的回调处理,接收到回调处理后自动取消订阅。 单次订阅某个事件以及接收事件的回调处理,接收到回调处理后自动取消订阅。
**系统能力**: SystemCapability.Notification.Emitter
**参数:** **参数:**
| 参数名 | 类型 | 必填 | 说明 | | 参数名 | 类型 | 必填 | 说明 |
...@@ -85,6 +83,8 @@ off(eventId: number): void ...@@ -85,6 +83,8 @@ off(eventId: number): void
取消订阅某个事件。 取消订阅某个事件。
**系统能力**: SystemCapability.Notification.Emitter
**参数:** **参数:**
| 参数名 | 类型 | 必填 | 说明 | | 参数名 | 类型 | 必填 | 说明 |
...@@ -103,6 +103,8 @@ emit(event: InnerEvent, data?: EventData): void ...@@ -103,6 +103,8 @@ emit(event: InnerEvent, data?: EventData): void
发送一个事件到事件队列。 发送一个事件到事件队列。
**系统能力**: SystemCapability.Notification.Emitter
**参数:** **参数:**
| 参数名 | 类型 | 必填 | 说明 | | 参数名 | 类型 | 必填 | 说明 |
...@@ -131,8 +133,8 @@ emitter.emit(innerEvent, eventData); ...@@ -131,8 +133,8 @@ emitter.emit(innerEvent, eventData);
| 名称 | 参数类型 | 可读 | 可写 | 说明 | | 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | ------------------------------- | ---- | ---- | ---------------------------------- | | -------- | ------------------------------- | ---- | ---- | ---------------------------------- |
| eventId | number | 是 | 是 | 事件的ID,由开发者定义用来辨别事件 | | eventId | number | 是 | 是 | 事件的ID,由开发者定义用来辨别事件<br/>**系统能力**: SystemCapability.Notification.Emitter |
| priority | [EventPriority](#eventpriority) | 是 | 是 | 事件被投递的优先级 | | priority | [EventPriority](#eventpriority) | 是 | 是 | 事件被投递的优先级<br/>**系统能力**: SystemCapability.Notification.Emitter |
## EventData ## EventData
...@@ -140,4 +142,4 @@ emitter.emit(innerEvent, 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.
先完成此消息的编辑!
想要评论请 注册