(Ionic 4)当应用程序处于前台状态时,无法通过firebaseX接收通知

时间:2019-09-16 10:26:31

标签: firebase ionic-framework notifications foreground

我使用FirebaseX在我的应用程序中接收通知。 我在后台正确收到通知。但是当应用程序处于前台时,什么也没发生...

我已经搜索了这个问题,但是对我没有任何帮助。 我尝试在数据内容中包含以下数据(当服务器调用url发送通知时)  [notification_foreground] =>是  [tap] => true

这是我的插件列表:

cordova-plugin-androidx-adapter 1.1.0 "cordova-plugin-androidx-adapter"
cordova-plugin-app-version 0.1.9 "AppVersion"
cordova-plugin-badge 0.8.8 "Badge"
cordova-plugin-device 2.0.3 "Device"
cordova-plugin-dialogs 2.0.2 "Notification"
cordova-plugin-fcm-with-dependecy-updated 3.0.0 "Cordova FCM Push Plugin"
cordova-plugin-file 6.0.2 "File"
cordova-plugin-firebasex 5.0.0 "Google Firebase Plugin"
cordova-plugin-ionic-keyboard 2.2.0 "cordova-plugin-ionic-keyboard"
cordova-plugin-ionic-webview 4.1.1 "cordova-plugin-ionic-webview"
cordova-plugin-local-notification 0.9.0-beta.2 "LocalNotification"
cordova-plugin-speechrecognition 1.1.2 "Speech Recognition"
cordova-plugin-splashscreen 5.0.3 "Splashscreen"
cordova-plugin-statusbar 2.4.3 "StatusBar"
cordova-plugin-whitelist 1.3.4 "Whitelist"

离子信息:

Ionic:

   Ionic CLI                     : 5.2.8 
   Ionic Framework               : @ionic/angular 4.9.0
   @angular-devkit/build-angular : 0.13.9
   @angular-devkit/schematics    : 7.3.9
   @angular/cli                  : 7.3.9
   @ionic/angular-toolkit        : 1.5.1

Cordova:

   Cordova CLI       : 9.0.0 (cordova-lib@9.0.1)
   Cordova Platforms : android 8.0.0
   Cordova Plugins   : cordova-plugin-ionic-keyboard 2.2.0, cordova-plugin-ionic-webview 4.1.1, (and 23 other plugins)

Utility:

   cordova-res : 0.5.1
   native-run  : 0.2.7

System:

   NodeJS : v10.16.0 
   npm    : 6.10.1
   OS     : Windows 10

订阅消息的代码...

this.firebase.onMessageReceived().subscribe(notification => {
            console.log('NOTIFICATION !!!!');
            console.log(notification);
            alert( JSON.stringify(notification) );
            if (notification['tap']) {
                this.navCtrl.navigateRoot('/test');
            } else {
                alert( JSON.stringify(notification) );
            }
        });

当应用程序在后台运行时,我会收到通知,当我点击它时,我会收到警报消息和控制台日志。

但是当应用程序处于前台时,什么也不会显示。

感谢您的帮助。

4 个答案:

答案 0 :(得分:0)

使用--prod似乎无需执行任何其他操作即可... 在调试模式下不起作用

答案 1 :(得分:0)

来自https://github.com/dpa99c/cordova-plugin-firebasex#background-notifications

如果在前台运行应用程序时收到通知消息,则默认情况下,它不会显示为系统通知。而是将通知消息有效负载传递到onMessageReceived回调,以供插件处理(不会设置分接头)。

如果您在数据有效载荷中包含notification_foreground键,则当应用程序在前台运行时,该插件还将在收到通知消息时显示系统通知。例如:

{   “ name”:“ my_notification”,   “通知”:{     “ body”:“通知主体”,     “ title”:“通知标题”   },   “数据”:{     “ notification_foreground”:“ true”,   } }

。麦加伊斯

答案 2 :(得分:0)

cordova-plugin-firebasex 插件无法与 cordova-plugin-local-notification 插件一起使用,我已经在当前的ionic ios应用程序中遇到了这个问题android,它运行正常

根据@ dpa99c

问题是此插件和cordova-plugin-local-notifications都实现了相同的UNUserNotificationCenterDelegate willPresentNotification委托,并且由于委托与其父类具有1:1关系,因此仅调用了一个委托-在这种情况下,是cordova-plugin-firebasex委托,以响应cordova-plugin-local-notifications创建的通知。

请检查下面的链接以获取详细说明

https://github.com/dpa99c/cordova-plugin-firebasex/issues/230

解决方案: 请与{strong> cordova-plugin-firebasex 一起使用this本地通知插件

答案 3 :(得分:0)

这与 prod、QA 或调试模式无关。要触发前台消息,您需要在通知负载中的数据对象下合并 "notification_foreground": "true"。

示例:

{
 "to" : "your device token",
 "notification" :{
     "body" : "your message body",
     "title": "your title for notification"
 },
  "data":{
       "notification_foreground": "true"
  }
 }