2014-02-22 99 views
0

我正試圖在android設備的工作目標中實現推送通知。我有個問題 。當我第一次運行推送通知時,它工作正常。但是在使用直接更新更新代碼之後,推送通知回調函數被稱爲應用程序更新次數。我該怎麼辦。推送中的問題工作燈中的通知

的下面是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'); 
} 

回答