Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
a0ec609e
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看板
未验证
提交
a0ec609e
编写于
3月 12, 2022
作者:
O
openharmony_ci
提交者:
Gitee
3月 12, 2022
浏览文件
操作
浏览文件
下载
差异文件
!1923 Fix format issues of notification api
Merge pull request !1923 from xuzhihao/master
上级
babe7145
1b4fa2b1
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
1058 addition
and
1102 deletion
+1058
-1102
zh-cn/application-dev/reference/apis/js-apis-emitter.md
zh-cn/application-dev/reference/apis/js-apis-emitter.md
+15
-13
zh-cn/application-dev/reference/apis/js-apis-notification.md
zh-cn/application-dev/reference/apis/js-apis-notification.md
+1043
-1089
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-emitter.md
浏览文件 @
a0ec609e
...
...
@@ -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
|
zh-cn/application-dev/reference/apis/js-apis-notification.md
浏览文件 @
a0ec609e
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录