1.集成极光插件到项目:cordova plugin add jpush-phonegap-plugin --variable API_KEY=xxxxxx(切换到项目根目录,控制台或终端运行此命令)
2.iOS端配置相应的证书,android和iOS的bundle id在config中修改,下图马赛克位置
3.初始化等相关配置看集成插件里面的readme文件,然后监听通知,并处理
jpush.receiveNotification().subscribe(res=>{
alert("====接到通知");
console.log("========== 接到通知");
console.log(JSON.stringify(res));
});
4.坑点,一定要在用到jpush的地方加上判断,否则浏览器调试的时候会报错哦
if(platform.is("cordova")) {
jpush.receiveNotification().subscribe(res=>{
alert("====接到通知");
console.log("========== 接到通知");
console.log(JSON.stringify(res));
});
网友评论