通知消息

接口声明

  1. { "name": "system.notification" }

导入模块

  1. import notification from '@system.notification' const notification = require('@system.notification')

接口定义

notification.show(OBJECT)

显示通知

参数:

参数名类型必填说明
contentTitleString标题
contentTextString内容
clickActionObject通知点击后触发动作的信息
clickAction:
参数名类型必填说明
uriString点击通知后跳转的页面地址。支持的格式包括:- 以"/"开头的应用内页面的路径;例:/about- 以非"/"开头的应用内页面的名称;例:About- 特殊的,如果 uri 的值是"/",则跳转到 path 为"/"的页,没有则跳转到首页可以通过"?param1=value1"的方式添加参数,参数可以在页面中通过this.param1的方式使用

示例:

  1. notification.show({
  2. contentTitle: 'title',
  3. clickAction: {
  4. uri: '/index.html?index=1'
  5. }
  6. })

后台运行限制

无限制。后台运行详细用法参见后台运行 脚本