1***@qq.com
1***@qq.com
  • 发布:2021-04-09 10:41
  • 更新:2021-04-09 11:40
  • 阅读:683

unipush 当系统通知栏有多条消息时,监听click事件页面跳转失败

分类:uni-app

unipush 当系统通知栏有多条消息时,触发click事件页面跳转失败,当系统通知栏只有一条消息时可以成功跳转

onLaunch: function() {  
            console.log('App Launch')  
            // 消息推送相关代码  
            // #ifdef APP-PLUS  
            plus.push.addEventListener('click', function(msg) {  
                console.log("msg", msg);  
                uni.switchTab({  
                    url: '/pages/msg/msg'  
                })  
            }, false);  

            plus.push.addEventListener('receive', function(msg) {  
                console.log("msg", msg);  
                plus.push.createMessage( msg.title,msg.payload);  
            }, false);  
            // var info = plus.push.getClientInfo();  
            // console.log( JSON.stringify( info ) );  
            // #endif  
        },
2021-04-09 10:41 负责人:无 分享
已邀请:
2104_DLS

2104_DLS

与push消息无关,你看一下跳转的失败回调有什么具体提示

该问题目前已经被锁定, 无法添加新回复