javascript – 引用错误onnotification没有在推送通知cordova android中定义

前端之家收集整理的这篇文章主要介绍了javascript – 引用错误onnotification没有在推送通知cordova android中定义前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用Cordova(ionframework angularjs)构建使用 Android设备的推送通知请求.注册
successHandler()被触发(‘ok’)消息结果!
为什么onNotification()方法在任何时候都没有被触发?
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,{
                "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失败:Stack:ReferenceError:onNotification没有被定义,我认为onNotification()的问题请帮忙

解决方法

onNotification必须在窗口中有范围.
window.onNotification = function(){

}
原文链接:https://www.f2er.com/js/151193.html

猜你在找的JavaScript相关文章