我正在尝试在针对Android设备的worklight中实现推送通知。我有个问题 。当我第一次运行推送通知时,它运行正常。但是在使用直接更新更新代码之后,推送通知回调函数被称为应用程序更新的次数。我该怎么办。
以下是我用来接收推送通知的javascript代码
if (WL.Client.Push) {
WL.Client.Push.onReadyToSubscribe = function () {
WL.Client.Push.registerEventSourceCallback(
"myPushh",
"BackEnd",
"PushEventSource",
pushNotificationReceived);
};
}
function pushNotificationReceived(props, payload) {
alert('Push Notification Received');
}
答案 0 :(得分:0)
我发现了类似的问题,并且有一个答案。所以我要给出问题和答案的链接。
push notification receiving more than one time in worklight 6.0 after Updating the applicaion