Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
4bcb6872
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
4bcb6872
编写于
6月 27, 2022
作者:
F
fangjinliang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add new interface
Signed-off-by:
N
fangjinliang
<
fangjinliang1@huawei.com
>
上级
e01f7558
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
116 addition
and
1 deletion
+116
-1
zh-cn/application-dev/reference/apis/js-apis-notification.md
zh-cn/application-dev/reference/apis/js-apis-notification.md
+116
-1
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-notification.md
浏览文件 @
4bcb6872
...
@@ -2720,7 +2720,7 @@ isNotificationSlotEnabled(bundle: BundleOption, type: SlotType, callback: AsyncC
...
@@ -2720,7 +2720,7 @@ isNotificationSlotEnabled(bundle: BundleOption, type: SlotType, callback: AsyncC
| -------- | ----------------------------- | ---- | ---------------------- |
| -------- | ----------------------------- | ---- | ---------------------- |
| bundle |
[
BundleOption
](
#bundleoption
)
| 是 | 指定包信息。 |
| bundle |
[
BundleOption
](
#bundleoption
)
| 是 | 指定包信息。 |
| type |
[
SlotType
](
#slottype
)
| 是 | 指定渠道类型。 |
| type |
[
SlotType
](
#slottype
)
| 是 | 指定渠道类型。 |
| callback | AsyncCallback
\<
void
\>
| 是 |
设定
渠道使能回调函数。 |
| callback | AsyncCallback
\<
void
\>
| 是 |
获取
渠道使能回调函数。 |
**示例:**
**示例:**
...
@@ -2763,6 +2763,119 @@ Notification.isNotificationSlotEnabled(
...
@@ -2763,6 +2763,119 @@ Notification.isNotificationSlotEnabled(
});
});
```
```
## Notification.setSyncNotificationEnabledForUninstallApp <sup>9+</sup>
setSyncNotificationEnabledForUninstallApp(userId: number, enable: boolean, callback: AsyncCallback
<void>
): void
设定分布式设备未安装应用时是否同步通知的使能状态;使能开启时,分布式设备即使未安装应用,也可以同步收到通知;反之,则不能。(Callback形式)。
**系统能力**
:SystemCapability.Notification.Notification
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | --------------------- | ---- | ---------------------- |
| userId | number | 是 | 指定用户的Id。 |
| enable | boolean | 是 | 使能状态。 |
| callback | AsyncCallback
\<
void
\>
| 是 | 设定使能状态回调函数。 |
**示例:**
```
js
//setSyncNotificationEnabledForUninstallApp
function
setEnabledCallback
(
err
)
{
console
.
log
(
'
===================>setSyncNotificationEnabledForUninstallApp==================>
'
);
};
let
userId
=
100
Notification
.
setSyncNotificationEnabledForUninstallApp
(
userId
,
true
,
setEnabledCallback
);
```
## Notification.setSyncNotificationEnabledForUninstallApp <sup>9+</sup>
function setSyncNotificationEnabledForUninstallApp(userId: number, enable: boolean): Promise
<void>
设定分布式设备未安装应用时是否同步通知的使能状态;使能开启时,分布式设备即使未安装应用,也可以同步收到通知;反之,则不能。(Promise形式)。
**系统能力**
:SystemCapability.Notification.Notification
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------- | ---- | -------------- |
| userId | number | 是 | 指定用户的Id。 |
| enable | boolean | 是 | 使能状态。 |
**示例:**
```
js
//setSyncNotificationEnabledForUninstallApp
let
userId
=
100
Notification
.
setSyncNotificationEnabledForUninstallApp
(
userId
,
true
).
then
(()
=>
{
console
.
log
(
'
====================>setSyncNotificationEnabledForUninstallApp====================>
'
);
});
```
## Notification.getSyncNotificationEnabledForUninstallApp <sup>9+</sup>
getSyncNotificationEnabledForUninstallApp(userId: number, callback: AsyncCallback
<boolean>
): void
获取分布式设备未安装应用时是否同步通知的使能状态(Callback形式)。
**系统能力**
:SystemCapability.Notification.Notification
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | --------------------- | ---- | ---------------------- |
| userId | number | 是 | 指定用户的Id。 |
| callback | AsyncCallback
\<
void
\>
| 是 | 获取使能状态回调函数。 |
**示例:**
```
js
//getSyncNotificationEnabledForUninstallApp
function
getEnabledCallback
(
err
)
{
console
.
log
(
'
===================>getSyncNotificationEnabledForUninstallApp==================>
'
);
};
let
userId
=
100
Notification
.
getSyncNotificationEnabledForUninstallApp
(
userId
,
getEnabledCallback
);
```
## Notification.getSyncNotificationEnabledForUninstallApp <sup>9+</sup>
getSyncNotificationEnabledForUninstallApp(userId: number): Promise
<boolean>
获取分布式设备未安装应用时是否同步通知的使能状态(Promise形式)。
**系统能力**
:SystemCapability.Notification.Notification
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | -------------- |
| userId | number | 是 | 指定用户的Id。 |
**示例:**
```
js
//getSyncNotificationEnabledForUninstallApp
let
userId
=
100
Notification
.
getSyncNotificationEnabledForUninstallApp
(
userId
,
true
).
then
(()
=>
{
console
.
log
(
'
====================>getSyncNotificationEnabledForUninstallApp====================>
'
);
});
```
## NotificationSubscriber
## NotificationSubscriber
### onConsume
### onConsume
...
@@ -3298,6 +3411,8 @@ Notification.subscribe(subscriber, subscribeCallback);
...
@@ -3298,6 +3411,8 @@ Notification.subscribe(subscriber, subscribeCallback);
| distributedOption
<sup>
8+
</sup>
| 是 | 是 |
[
DistributedOptions
](
#distributedoptions8
)
| 否 | 分布式通知的选项。 |
| distributedOption
<sup>
8+
</sup>
| 是 | 是 |
[
DistributedOptions
](
#distributedoptions8
)
| 否 | 分布式通知的选项。 |
| deviceId
<sup>
8+
</sup>
| 是 | 否 | string | 否 | 通知源的deviceId。 |
| deviceId
<sup>
8+
</sup>
| 是 | 否 | string | 否 | 通知源的deviceId。 |
| notificationFlags
<sup>
8+
</sup>
| 是 | 否 |
[
NotificationFlags
](
#notificationflags8
)
| 否 | 获取NotificationFlags。 |
| notificationFlags
<sup>
8+
</sup>
| 是 | 否 |
[
NotificationFlags
](
#notificationflags8
)
| 否 | 获取NotificationFlags。 |
| badgeNumber
<sup>
9+
</sup>
| 是 | 是 | number | 否 | 角标显示的未读通知数 |
| removalWantAgent
<sup>
9+
</sup>
| 是 | 是 | WantAgent | 否 | 删除通知后跳转的WantAgent |
## DistributedOptions<sup>8+</sup>
## DistributedOptions<sup>8+</sup>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录