模块引入
const notifications = app.requireModule("pmuiNotifications");
let notifications = requireModuleJs("pmuiNotifications");
方法
notify(params)
key | 类型 | Demo | 描述 |
---|---|---|---|
id | int | 137716958213 | 本地通知id,保证唯一,必传 |
badge | String | ‘1’ | app角标设置 |
title | String | “标题” | 本地通知标题 |
subtitle | String | “副标题” | 本地通知副标题 |
body | String | “内容” | 本地通知内容 |
time | double | 1312323213 | 发送通知时间戳,默认是1,可选 |
let params = {
id:'137716958213',
badge:'1',
title:'标题',
subtitle:'本地通知副标题',
body:'内容'
}
demo
let params = {
id:'1',
badge:'1',
title:'标题',
subtitle:'本地通知副标题',
body:'内容'
}
notifications.notify(params)
clearId(id) 根据ID清除指定通知
key | 类型 | Demo | 描述 |
---|---|---|---|
id | int | 137716958213 | 本地通知id,保证唯一,必传 |
demo
let params = '137716958213'
notifications.clearId(params)
clearTitle(title) 根据标题清除指定通知
key | 类型 | Demo | 描述 |
---|---|---|---|
title | String | “标题” | 本地通知title,必传 |
clearAll 清除所有通知