Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
74664e47
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看板
未验证
提交
74664e47
编写于
2月 17, 2022
作者:
O
openharmony_ci
提交者:
Gitee
2月 17, 2022
浏览文件
操作
浏览文件
下载
差异文件
!1488 事件通知新增接口
Merge pull request !1488 from zengsiyu/dev
上级
41b6b7fc
586a236d
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
584 addition
and
311 deletion
+584
-311
zh-cn/application-dev/reference/apis/js-apis-commonEvent.md
zh-cn/application-dev/reference/apis/js-apis-commonEvent.md
+74
-1
zh-cn/application-dev/reference/apis/js-apis-notification.md
zh-cn/application-dev/reference/apis/js-apis-notification.md
+510
-310
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-commonEvent.md
浏览文件 @
74664e47
...
...
@@ -113,7 +113,7 @@
## 导入模块
```
js
import
CommonEvent
from
'
@ohos.common
e
vent
'
;
import
CommonEvent
from
'
@ohos.common
E
vent
'
;
```
## 系统能力
...
...
@@ -183,6 +183,79 @@ CommonEvent.publish("publish_event", options, PublishCallBack);
## CommonEvent.publishAsUser
publishAsUser(event: string, userId: number, callback: AsyncCallback
\<
void>): void
向指定用户发布公共事件(callback形式)。
**参数:**
| 名称 | 读写属性 | 类型 | 必填 | 描述 |
| -------- | -------- | -------------------- | ---- | ---------------------------------- |
| event | 只读 | string | 是 | 表示要发送的公共事件。 |
| userId | 只读 | number | 是 | 表示指定向该用户ID发送此公共事件。 |
| callback | 只读 | AsyncCallback
\<
void> | 是 | 表示被指定的回调方法。 |
**示例:**
```
js
//发布公共事件回调
function
PublishAsUserCallBack
(
err
)
{
if
(
err
.
code
)
{
console
.
info
(
"
publishAsUser failed
"
+
JSON
.
stringify
(
err
));
}
else
{
console
.
info
(
"
publishAsUser
"
);
}
}
//指定发送的用户
var
userId
=
100
;
//发布公共事件
CommonEvent
.
publish
(
"
publish_event
"
,
userId
,
PublishAsUserCallBack
);
```
## CommonEvent.publishAsUser
publishAsUser(event: string, userId: number, options: CommonEventPublishData, callback: AsyncCallback
\<
void>): void
向指定用户发布公共事件并指定发布信息(callback形式)。
**参数:**
| 名称 | 读写属性 | 类型 | 必填 | 描述 |
| -------- | -------- | ---------------------- | ---- | ---------------------- |
| event | 只读 | string | 是 | 表示要发布的公共事件。 |
| userId | 只读 | number | 是 | 表示指定向该用户ID发送此公共事件。 |
| options | 只读 |
[
CommonEventPublishData
](
#commoneventpublishdata
)
| 是 | 表示发布公共事件的属性。 |
| callback | 只读 | AsyncCallback
\<
void> | 是 | 表示被指定的回调方法。 |
**示例:**
```
js
//公共事件相关信息
var
options
=
{
code
:
0
;
//公共事件的初始代码
data
:
"
initial data
"
;
//公共事件的初始数据
}
//发布公共事件回调
function
PublishAsUserCallBack
(
err
)
{
if
(
err
.
code
)
{
console
.
info
(
"
publishAsUser failed
"
+
JSON
.
stringify
(
err
));
}
else
{
console
.
info
(
"
publishAsUser
"
);
}
}
//指定发送的用户
var
userId
=
100
;
//发布公共事件
CommonEvent
.
publish
(
"
publish_event
"
,
userId
,
options
,
PublishAsUserCallBack
);
```
## CommonEvent.createSubscriber
createSubscriber(subscribeInfo: CommonEventSubscribeInfo, callback: AsyncCallback
\<
CommonEventSubscriber>): void
...
...
zh-cn/application-dev/reference/apis/js-apis-notification.md
浏览文件 @
74664e47
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录