提交 5d320982 编写于 作者: F fangjinliang

document modify

Signed-off-by: Nfangjinliang <fangjinliang1@huawei.com>
上级 2b7bf3c6
......@@ -131,7 +131,19 @@ var subscriber = {
### 通知发送
通知发布前,先要确认通知发送使能是否开启,新安装的应用使能默认是关闭状态,需要到通知设置里开启。
##### 开启通知使能
应用发布通知的使能开关默认是关闭的,所以应用发布通知前需要用户允许后才能发送。应用可以通过Notification.requestEnableNotification弹窗提醒用户允许发送通知。
```js
Notification.requestEnableNotification() .then((data) => {
console.info('===>requestEnableNotification success');
}).catch((err) => {
console.error('===>requestEnableNotification failed because ' + JSON.stringify(err));
});
```
##### 通知发布
......
......@@ -1156,7 +1156,7 @@ Notification.setSlotByBundle(bundle, notificationSlot, setSlotByBundleCallback);
setSlotByBundle(bundle: BundleOption, slot: NotificationSlot): Promise\<void\>
设定指定包的角标使能状态(Promise形式)。
设定指定包的通知通道状态(Promise形式)。
**系统能力**:SystemCapability.Notification.Notification
......@@ -2851,10 +2851,10 @@ Notification.subscribe(subscriber, subscribeCallback);
| 名称 | 值 | 说明 |
| --------------------------------- | ----------- | ------------------ |
| LEVEL_NONE | 0 | 表示关闭通知功能。 |
| LEVEL_MIN | 1 | 示通知功能已启用,但状态栏中不显示通知图标,且没有横幅或提示音。 |
| LEVEL_LOW | 2 | 示通知功能已启用,且状态栏中显示通知图标,但没有横幅或提示音。 |
| LEVEL_DEFAULT | 3 | 示通知功能已启用,状态栏中显示通知图标,没有横幅但有提示音。 |
| LEVEL_HIGH | 4 | 示通知功能已启用,状态栏中显示通知图标,有横幅和提示音。 |
| LEVEL_MIN | 1 | 示通知功能已启用,但状态栏中不显示通知图标,且没有横幅或提示音。 |
| LEVEL_LOW | 2 | 示通知功能已启用,且状态栏中显示通知图标,但没有横幅或提示音。 |
| LEVEL_DEFAULT | 3 | 示通知功能已启用,状态栏中显示通知图标,没有横幅但有提示音。 |
| LEVEL_HIGH | 4 | 示通知功能已启用,状态栏中显示通知图标,有横幅和提示音。 |
## BundleOption
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册