<script>
export default {
onLaunch: function() {
console.log('App Launch')
var info = plus.push.getClientInfo();
console.log(JSON.stringify(info));
plus.nativeUI.toast(info.clientid);
/* 5+ push 消息推送 ps:使用:H5+的方式监听,实现推送*/
plus.push.addEventListener("click", function(msg) {
plus.nativeUI.toast('push click');
//这里可以写跳转业务代码
}, false);
// 监听在线消息事件
plus.push.addEventListener("receive", function(msg) {
alert("2");
//这里可以写跳转业务代码
}, false);
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style lang="scss">
@import "uview-ui/index.scss";
/每个页面公共css /
</style>
AIHV
解决了,参考 https://www.it610.com/article/1290091371675328512.htm
后端推送数据结构修改一下就行了,链接里有前后端代码
2021-04-01 11:13