问:得到推送通知后,如果我单击该按钮,则应该打开“ notification.html”页面,现在“ index.html”正在打开该如何实现?
答:您可以在通知成功回调中重定向到另一个页面。就像在iOS中一样:
功能onNotificationAPN(事件){
如果(event.alert)
{
document.location.href ='文件/notification.html的路径';
}
}
在Android中:
var onNotificationGCM = function(e){
//检查哪个事件:
切换(事件)
{
案例“注册”:
{
deviceToken = e.regid;
打破;
}
案例“消息”:
{
//这是实际的推送通知。其格式取决于推送服务器中的数据模型
var message = e.message;
document.location.href ='文件/notification.html的路径';
打破;
}
}
};