25

当我的应用程序最小化时,当我在手机上收到推送通知时,如果我单击通知启动我的应用程序,调用

window.pushNotification.getIncoming( callback )

返回{"message":"","extras":{}}而不是我单击的通知的数据。

这是正确的行为吗?如果是这样,有没有办法获得我想要的信息?

4

1 回答 1

1

使用以下代码进行 PhoneGap 推送通知

window.LocalNotification.add({
                    message : "hello",
                    ticker : "New Notification",
                    repeatDaily : false,
                    id : 4
                }, newNotification);


function newNotification(e) {
if (e != null && e.event == "newLocalNotification") {
    // add my Appointment page
    window.location = "#redirectPageId";

}

}

使用“redirectPageId”重定向页面

于 2015-06-05T12:01:58.970 回答