Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
8eb02673
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看板
提交
8eb02673
编写于
3月 30, 2022
作者:
F
fangjinliang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
document modify
Signed-off-by:
N
fangjinliang
<
fangjinliang1@huawei.com
>
上级
c2f1522e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
15 addition
and
48 deletion
+15
-48
zh-cn/application-dev/notification/notification.md
zh-cn/application-dev/notification/notification.md
+15
-48
未找到文件。
zh-cn/application-dev/notification/notification.md
浏览文件 @
8eb02673
...
@@ -131,33 +131,7 @@ var subscriber = {
...
@@ -131,33 +131,7 @@ var subscriber = {
### 通知发送
### 通知发送
通知发布前,先查询应用通知使能开关是否打开,新安装的应用使能默认是关闭状态。
通知发布前,先要确认通知发送使能是否开启,新安装的应用使能默认是关闭状态,需要到通知设置里开启。
##### 开启通知使能
先查询通知使能
```
js
var
bundle
=
{
bundle
:
"
bundleName1
"
,
}
Notification
.
isNotificationEnabled
(
bundle
).
then
((
data
)
=>
{
console
.
info
(
"
===>isNotificationEnabled success===>
"
);
});
```
若使能为false关闭状态,需要开启使能
```
js
var
bundle
=
{
bundle
:
"
bundleName1
"
,
}
Notification
.
enableNotification
(
bundle
,
true
,
async
(
err
)
=>
{
console
.
log
(
"
===>enableNotification success===>
"
);
});
```
##### 通知发布
##### 通知发布
...
@@ -170,7 +144,7 @@ Notification.enableNotification(bundle, true, async(err) => {
...
@@ -170,7 +144,7 @@ Notification.enableNotification(bundle, true, async(err) => {
var
notificationRequest
=
{
var
notificationRequest
=
{
id
:
1
,
id
:
1
,
content
:
{
content
:
{
contentType
:
notify
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
contentType
:
Notification
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
normal
:
{
normal
:
{
title
:
"
test_title
"
,
title
:
"
test_title
"
,
text
:
"
test_text
"
,
text
:
"
test_text
"
,
...
@@ -197,25 +171,18 @@ wantAgent使用详见[wantAgent开发文档](https://gitee.com/openharmony/docs/
...
@@ -197,25 +171,18 @@ wantAgent使用详见[wantAgent开发文档](https://gitee.com/openharmony/docs/
```
js
```
js
import
wantAgent
from
'
@ohos.wantAgent
'
;
import
wantAgent
from
'
@ohos.wantAgent
'
;
import
{
OperationType
,
Flags
}
from
'
@ohos.wantagent
'
;
//WantAgentInfo对象
//WantAgentInfo对象
var
wantAgentInfo
=
{
var
wantAgentInfo
=
{
wants
:
[
wants
:
[
{
{
deviceId
:
'
deviceId
'
,
bundleName
:
'
ohos.samples.eTSNotification
'
,
bundleName
:
'
com.example.myapplication
'
,
abilityName
:
'
ohos.samples.eTSNotification.MainAbility
'
,
abilityName
:
'
com.example.myapplication.MainAbility
'
,
}
action
:
'
REMINDER_EVENT_REMOVE_NOTIFICATION
'
,
],
entities
:
[
'
entity1
'
],
operationType
:
wantAgent
.
OperationType
.
START_ABILITY
,
type
:
'
MIMETYPE
'
,
requestCode
:
0
,
uri
:
'
key={true,true,false}
'
,
wantAgentFlags
:[
wantAgent
.
WantAgentFlags
.
UPDATE_PRESENT_FLAG
]
parameters
:
{
myKey0
:
1111
},
}
],
operationType
:
OperationType
.
START_ABILITIES
,
requestCode
:
0
,
wantAgentFlags
:[
Flags
.
UPDATE_PRESENT_FLAG
]
}
}
//wantAgent对象
//wantAgent对象
...
@@ -241,7 +208,7 @@ wantAgent.getWantAgent(wantAgentInfo, getWantAgentCallback)
...
@@ -241,7 +208,7 @@ wantAgent.getWantAgent(wantAgentInfo, getWantAgentCallback)
//构造NotificationRequest对象
//构造NotificationRequest对象
var
notificationRequest
=
{
var
notificationRequest
=
{
content
:
{
content
:
{
contentType
:
notify
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
contentType
:
Notification
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
normal
:
{
normal
:
{
title
:
"
AceApplication_Title
"
,
title
:
"
AceApplication_Title
"
,
text
:
"
AceApplication_Text
"
,
text
:
"
AceApplication_Text
"
,
...
@@ -251,7 +218,7 @@ var notificationRequest = {
...
@@ -251,7 +218,7 @@ var notificationRequest = {
id
:
1
,
id
:
1
,
label
:
'
TEST
'
,
label
:
'
TEST
'
,
wantAgent
:
WantAgent
,
wantAgent
:
WantAgent
,
slotType
:
notify
.
SlotType
.
OTHER_TYPES
,
slotType
:
Notification
.
SlotType
.
OTHER_TYPES
,
deliveryTime
:
new
Date
().
getTime
()
deliveryTime
:
new
Date
().
getTime
()
}
}
...
@@ -284,9 +251,9 @@ Notification.cancel(1, "label", cancelCallback)
...
@@ -284,9 +251,9 @@ Notification.cancel(1, "label", cancelCallback)
针对通知开发,有以下示例工程可供参考:
针对通知开发,有以下示例工程可供参考:
-
notification
-
[
Notification
](
https://gitee.com/openharmony/app_samples/tree/master/Notification/Notification
)
本示例展示了在eTS中如何使用Notification的接口完成通知订阅、取消订阅、发布通知、取消通知
、查询和开启通知使能
功能。
本示例展示了在eTS中如何使用Notification的接口完成通知订阅、取消订阅、发布通知、取消通知功能。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录