我正在使用我的应用程序从ionic.io alpha迁移到beta,我发现了一些奇怪的行为:
这是我正在使用的代码:
var push = new Ionic.Push({
"debug": true,
"onNotification": function(notification) {
var payload = notification.payload;
console.log(notification, payload);
$state.go(payload['$state'],payload['$stateParams']);
},
"onRegister": function(data) {
push.saveToken(token); // persist the token in the Ionic Platform
},
"pluginConfig": {
"android": {
"icon": "push_icon",
"iconColor": "#F47D30"
},
那么,有没有人遇到过类似的问题,或者可以帮我解决问题呢?