Cordova,onResume()仅在我包含alert()时才有效

时间:2015-12-18 05:44:38

标签: javascript ios cordova push-notification push

我正在使用cordova的推送插件。当用户点按通知时,会按预期将其带到“广告页面”。但奇怪的是,只有在onResume()中包含alert()或者在点击通知后再次打开应用程序时,它才有效。

function onNotificationAPN(e) {
    // Event callback that gets called when your device receives a
    // notification

    imgURL = e.imgURL; //should get set at same time notification appears

    if (e.alert) {
        navigator.notification.alert(e.alert);
    }
}

function onResume() {

    alert(imgURL); //1st

    if(imgURL)
    {
        alert(imgURL); //2nd
        window.location.href = "ad.html";
        imgURL = null;
    }
}

第一个警报显示“未定义”。但第二个警报显示我的通知有效负载中设置的imageURL。如果我将第一个警报注释掉,则不会显示第二个警报。但是如果我关闭并重新打开应用程序,那就确实如此。

这里发生了什么?

1 个答案:

答案 0 :(得分:2)

您是否已将imgURL定义为全局变量,因为它在不同的函数中使用?我不是100%肯定,但你可以使用超时而不是警报。

    var imgURL;

function onNotificationAPN(e) {
    // Event callback that gets called when your device receives a
 // notification

    imgURL = e.imgURL; //should get set at same time notification appears

    if (e.alert) {
        navigator.notification.alert(e.alert);
    }
}

function onResume() {

    //alert(imgURL); //1st

setTimeout(function(){ 
        if(imgURL)
        {
            //alert(imgURL); //2nd
            window.location.href = "ad.html";
        imgURL = null;
        }
}, 3000);


}