推送通知cordova android中未定义参考错误onnotification [英] Reference error onnotification is not defined in push notification cordova android

查看:15
本文介绍了推送通知cordova android中未定义参考错误onnotification的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用 Cordova (ionicframework+angularjs) 构建以使用 Android 设备的推送通知请求.进行注册时successHandler() 被 ('ok') 消息结果触发!为什么 onNotification() 方法不会在任何时候触发??.

Using Cordova (ionicframework+angularjs ) Build to use a push notifications requests for Android devices.When doing registration The successHandler() is fired with ('ok') message result! Why the onNotification() method is not fired any time??.

var pushNotification;
    document.addEventListener("deviceready", onDeviceReady, false);
    function onDeviceReady() {

        pushNotification = window.plugins.pushNotification;
        setupNotificationsForandroid();
    }
   //begin setup
    function setupNotificationsForandroid() {
     //  alert("inside setup");
        if ( device.platform == 'android' || device.platform == 'Android' || device.platform == "amazon-fireos" ){

            pushNotification.register(
            successHandler,
            errorHandler,
            {
                "senderID":"856763042820",
                "ecb":"onNotification"
            });
        } else {
            pushNotification.register(
            tokenHandler,
            errorHandler,
            {
                "badge":"true",
                "sound":"true",
                "alert":"true",
                "ecb":"onNotificationAPN"
            });
        }
    }
    function successHandler(result){

        //alert("success"+result);

    }
    function errorHandler(){

        alert("error");
    }
    // Android
    function onNotification(e) {
        //alert("inside onnotification");
        switch( e.event )
        {
        case 'registered':
              if ( e.regid.length > 0 ){
               //set up the server call for storing registraion ids
                 alert(e.regid);
              }

        break;

        case 'message':
                // if this flag is set, this notification happened while we were in the foreground.
            if(e.foreground){
                var soundfile = e.soundname || e.payload.sound;
                var my_media = new Media("android/assets/www/"+ soundfile);
                my_media.play();
            }else{
               // otherwise we were launched because the user touched a notification in the notification tray.
            }


            break;

        case 'error':
               console.log("Error"+e.msg);
               break;

        default:
            console.log("An unknown event");
            return;
      }
    }   

这是我的控制台消息:

09-22 11:38:46.151: I/Web Console(24662): processMessage failed: Stack: ReferenceError: onNotification is not defined
09-22 11:38:46.151: I/Web Console(24662):     at eval (eval at processMessage (file:///android_asset/www/cordova.js:1006:26), <anonymous>:1:1)
09-22 11:38:46.151: I/Web Console(24662):     at processMessage (file:///android_asset/www/cordova.js:1006:13)
09-22 11:38:46.151: I/Web Console(24662):     at Function.androidExec.processMessages (file:///android_asset/www/cordova.js:1076:13)
09-22 11:38:46.151: I/Web Console(24662):     at pollOnce (file:///android_asset/www/cordova.js:944:17)
09-22 11:38:46.151: I/Web Console(24662):     at pollOnceFromOnlineEvent (file:///android_asset/www/cordova.js:939:5) at file:///android_asset/www/cordova.js:1045
09-22 11:38:46.151: D/CordovaLog(24662): file:///android_asset/www/cordova.js: Line 1046 : processMessage failed: Message: Jjavascript:onNotification({"regid":"APA91bHDLg9BZl-eicx3tS-MjVGy-mcufmbRc-EpCuKzb9b_tPddG125jyxY-OhVR5vul6az-eJ2nZ0PEiOVPqP2KjClaUwAKTBQx5gsIluI0jsGIrpCvNQdUbtKUBxNNH0DH94RHuGpjU29xhTS5Cl8qIgH1MlJHw","event":"registered"})

基于此 processMessage failed: Stack: ReferenceError: onNotification is not defined控制台消息我认为 onNotification() 有问题.请帮忙

Based on this processMessage failed: Stack: ReferenceError: onNotification is not definedconsole message i think the problem with onNotification().Please help

推荐答案

onNotification 必须在 window 范围内.

onNotification must be have scope in window.

window.onNotification = function(){

}

这篇关于推送通知cordova android中未定义参考错误onnotification的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆