我正在使用Cordova实现离子混合应用程序的推送通知,我面临的问题是CordovaPush插件有一个通知事件" notificationReceived"但除非我点击通知栏中的通知吐司,否则不会被解雇。请注意,我能够收到有关活动执行情况的通知。如果还有其他需要,请告诉我 请参阅下面的代码段
$rootScope.$on('$cordovaPush:notificationReceived', function(event, notification) {
console.log(notification); **//prints only when I click on the notification**
console.log(event);
});