Cordova + Angular + PushPlugin -回调未触发



我见过多个类似的项目,但没有一个是在相同的上下文中(用angular,而不是ionic)。我使用的是cordova 5.0.0 (cordova——version在cmd中显示5.0.0,在设备插件模块中我看到3.6.4)

我有一个基于angular的应用程序,运行在Cordova应用程序中。我正在尝试使用PushPlugin添加推送通知。

我能够(在主模块内)调用推送插件的register方法,并在Android(目前只有我测试的设备)中调用"成功"处理程序。不管我把回调函数放在哪里,ecb都不会被调用。

在my app.js中:

angular.module('myApp', [...]).config().run(['$rootScope',..., 
function($rootScope,...) {
    // etc etc...
    document.addEventListener("deviceready", function(){
        var pushNotification = window.plugins.pushNotification;
        pushnotification.register(
            successHandler,
            errorHandler,
            {
                "senderID":"<sender_id>",
                "ecb":"window.onNotification"
            });
    });
    // this is invoked
    function successHandler (result) {
        alert('result = ' + result);
    };
    function errorHandler (error) {
        alert('error = ' + error);
    };
    // option 1:
    function onNotification(e) {...};
    // option 2:
    var onNotification = function(e) {...};
    // option 3 
    // (tried below and above the call to register
    // though I believe it doesn't matter):
    window.onNotification = function(e) {...};
}]);
// option 4:
var onNotification = function(e) {...};

到目前为止,它们都不起作用。我假设我在做一些错误的范围,但我不确定是什么。

是作用域的问题吗?会是别的什么吗?怎么啦?如何诊断?

编辑:我检查了logcat,有些东西没有意义:

I/chromium       ( 3981): [INFO:CONSOLE(217)] "registering with GCM", source: file:///android_asset/www/js/app.js (217)
V/PushPlugin     ( 3981): execute: action=register
V/PushPlugin     ( 3981): execute: data=[{"senderID":"SENDER_ID","ecb":"window.onNotification"}]
V/PushPlugin     ( 3981): execute: jo={"senderID":"SENDER_ID","ecb":"window.onNotification"}
V/PushPlugin     ( 3981): execute: ECB=window.onNotification senderID=SENDER_ID
D/GCMRegistrar   ( 3981): resetting backoff for com.my.app
V/GCMRegistrar   ( 3981): Registering app com.my.app of senders SENDER_ID
W/ActivityManager( 1254): Unable to start service Intent {act=com.google.android.c2dm.intent.REGISTER pkg=com.google.android.gsf (has extras) } U=0: not found

插件版本我看到(cordova插件列表)是2.4.0。为什么目的是c2dm?它不应该使用更新的GCM吗?

事实证明,这是模拟器的问题。

上面所有的评论都是正确的通知事件回调(ecb)的范围,仍然,导致我最终在模拟器中工作的代码是logcat打印输出。关于无法启动注册服务意图的警告,因为它缺失(见问题中日志摘录的最后一行)是实际问题。

搜索该警告,我发现了这个讨论:没有通知Android与GCM -答案从2015-07-01由hmedney建议在模拟器中使用不同的设备目标。在改变模拟器使用"Google API (x86系统映像)(Google Inc.) - API Level 19"后,onNotification函数被调用,我在日志中看到注册ID。

相关内容

  • 没有找到相关文章

最新更新