快应用 通知消息
接口声明
{"name": "system.notification"}
导入模块
import notification from '@system.notification'
或
const notification = require('@system.notification')
接口定义
notification.show(OBJECT)
显示通知
参数:
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
contentTitle | String | 否 | 标题 |
contentText | String | 否 | 内容 |
clickAction | Object | 否 | 通知点击后触发动作的信息 |
clickAction:
参数名 | 类型 | 必填 | 说明 | ||||
---|---|---|---|---|---|---|---|
uri | String | 是 | 点击通知后跳转的页面地址。支持的格式包括:
this.param1 的方式使用 |
示例:
notification.show({
contentTitle: 'title',
clickAction: {
uri: '/index.html?index=1'
}
})
后台运行限制
无限制。
后台运行详细用法参见 后台运行脚本。