我实施了推送通知。它除了始终显示" 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
});
什么错了?我试图google"离子徽章删除"但没有好的点击率。一旦你点击应用程序,我所理解的徽章就会消失。但它没有(我在真正的iphone 6上进行测试)。