我正在使用https://github.com/phonegap/phonegap-plugin-push/进行推送通知。
pushRegistry = window.PushNotification.init({
android: {
'senderID': 'appId'
},
ios: {
alert: 'true',
badge: 'false',
sound: 'true'
}
});
pushRegistry.on('notification', function(data){
console.log(data);
});
现在,在收到通知并关闭应用程序时,会调用上面的事件处理程序。但是,如果应用程序正在运行,则不会调用它。我正在使用Chrome Device Debugger来检查是否调用了事件处理程序。我将不胜感激任何帮助。