|
|
|
|
}) // 接受推送消息// "type": "click" 用户点击系统通知栏中的消息,APP启动或者激活到前台运行,触发click事件// "type": "receive" 客户端接收到透传消息时(在系统通知栏中不显示消息),触发receive事件uni.onPushMessage(res => {console.log(res)if(res.type === 'click'){console.log(res.data.payload)}if (res.type === 'receive') {// 如果你希望当应用在线时,也通过“通知栏消息”,可以创建通知栏消息来提醒用户// uni.createPushMessage({// title: res.data.title,// content: res.data.content,// payload: res.data.payload// })}})//#endif},onShow: function () {},onHide: function () {} |