codecamp

快应用 通知消息

接口声明

{"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 点击通知后跳转的页面地址。支持的格式包括:
  1. 以"/"开头的应用内页面的路径;例:/about
  2. 以非"/"开头的应用内页面的名称;例:About
  3. 特殊的,如果uri的值是"/",则跳转到path为"/"的页,没有则跳转到首页
可以通过"?param1=value1"的方式添加参数,参数可以在页面中通过this.param1的方式使用

示例:

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

后台运行限制

无限制。

后台运行详细用法参见 后台运行脚本


快应用 打开网页
快应用 上传下载
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

快应用 参考手册

快应用 安全

快应用 声音音频

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }