2017-05-08 16 views
0

私はfirebaseを使用して私のイオンアプリでデータを受け取るために次のコードを使用しています。私はdata.wastapped = trueを返します。私のメインコントローラは、このCordova FCMプラグインがバックグラウンド通知データを処理します

FCMPlugin.onNotification(
         function(data){ 
          if(data.wasTapped){ 
    alert(JSON.stringify(data); 
    // need to pass this data to my app controller 

           tapped by the user. 
           alert(JSON.stringify(data)); 
          }else{ 

           alert(JSON.stringify(data)); 
          } 
         }, 
         function(msg){ 
          alert('onNotification callback successfully registered: ' + msg); 
         }, 
         function(err){ 
          alert('Error registering onNotification callback: ' + err); 
         } 

答えて

0

@Ramを達成 機能の下に、これを使用してみてくださいために私を助けてください

var scope = angular.element(document.getElementById('mainbody')).scope(); 
scope.$apply(function(){ 
      //show popup regarding alert   
      scope.showdatas(data); 
     }); 
関連する問題