0
我實施了推送通知。除了始終顯示「1」的徽章外,它的工作狀況良好。推送通知徽章不會消失
我的代碼如下所示:
var push = new Ionic.Push({
"debug": true
});
push.register(function(token) {
console.log("Device token:",token.token);
//Here I make an http post to my server to store device token
push.saveToken(token); // persist the token in the Ionic Platform
});
的哪些錯誤?我試圖谷歌「離子徽章刪除」,但沒有好的命中。只要你點擊應用程序,我理解的徽章應該會消失。但它不(我在真正的iphone 6測試)。