Cordova Pushplugin: ecb not called

南楼画角 提交于 2019-12-12 10:39:59

问题


I am trying to retrieve the device registration ID in order to send notifications to it from my backend.

I already gave it several tries:

  1. Outside my Object

GambifyApp.NotificationManager = window.GambifyApp.NotificationManager = Ember.Object.extend({
        init: function(){
            var pushNotification = window.plugins.pushNotification;
            window.GambifyApp.NotificationHandler = GambifyApp.NotificationHandler;
            if ( device.platform == 'android' || device.platform == 'Android' )
            {
                console.log('pushNotification Register');
                pushNotification.register(
                    this.successHandler,
                    this.errorHandler, {
                        "senderID":GambifyApp.config.android_sender_id,
                        "ecb":"window.externalOnNotificationGCM"
                    });
        },
    });

 window.externalOnNotificationGCM = function (e) {
            console.log('reg id:' + e.regid);
    };
  1. Approach was Inside another Object (Everything stays the same, except the ECB :

    "ecb":"window.GambifyApp.NotificationHandler.onHandler"
    

And here is where i put the handler:

GambifyApp.NotificationHandler =  window.GambifyApp.NotificationHandler = {
    onHandler: function(e){
        console.log('onHandler:');
        if(e.event == "registered") {
            console.log('reg id:' + e.regid);
        }
        console.log(e);
    }
}
  1. My last approach with

    "ecb":"GambifyApp.NotificationManager.onNotificationGCM"
    

And here the additions to the manager class:

GambifyApp.NotificationManager = window.GambifyApp.NotificationManager = Ember.Object.extend({
    /* ...... */

    onNotificationGCM: function(e){
        console.log('MESSAGE received:');
        console.log(e);
    }
});

I have also tried without the window object etc. My sucess handler is always triggered but never the ECB.


回答1:


The issue was solved by specifying ecb as window.GambifyApp.NotificationHandler.onNotificationGCM:

pushNotification.register(
    this.successHandler,
    this.errorHandler, {
        "senderID":GambifyApp.config.android_sender_id,
        "ecb":"window.GambifyApp.NotificationHandler.onNotificationGCM"
    }
);


来源:https://stackoverflow.com/questions/26630558/cordova-pushplugin-ecb-not-called

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!