{ "name": "system.notification" }
import notification from '@system.notification' 或 const notification = require('@system.notification')
显示通知
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
contentTitle | String | 否 | 标题 |
contentText | String | 否 | 内容 |
clickAction | Object | 否 | 通知点击后触发动作的信息 |
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
uri | String | 是 | 点击通知后跳转的页面地址。支持的格式包括:
this.param1 的方式使用。使用this.param1 变量时,需要在目标页面中在 public (应用外传参)或 protected (应用内传参)下定义 key 名相同的属性 |
notification.show({
contentTitle: 'title',
clickAction: {
uri: '/index.html?index=1'
}
})
无限制。
后台运行详细用法参见后台运行 脚本。