我在取消注册推送通知时遇到问题。我可以注册设备并获取令牌,也可以发送通知,但我也想添加取消注册功能。这是 y 为它编写的代码:
var unsubscribeNotification = function unsubscribeNotification() {
try {
pushNotification.unregister(
function(e) {
//unRegister Success!!!
alert('unRegister Success');
},
function(e) {
//unRegister Failed!!!
alert('unRegister Failed');
});
}
catch(err) {
//Handle errors here
alert(err.message);
}
}
当您单击它时,我还放置了一个按钮来运行 unsubscribeNotification() 函数。几秒钟后,应用程序停止,没有错误,没有消息,什么都没有!
我使用的是 Galaxy S3,我认为它有 Android 4.1
谢谢您的帮助!