离子云有时在ios设备上无法接收推送通知

时间:2017-03-11 10:25:04

标签: ios ionic2 cloud

我已经配置了安全配置文件并安装了push插件,注册了push插件是否成功

this.push.register().then((t: PushToken) => {

     return this.push.saveToken(t);

}).then((t: PushToken) => {

     //return success token
     console.log(t);

});

在我添加了以下代码

之后,我也成功收到了推送通知
//handle push 
this.push.rx.notification().subscribe((msg) => {

         let postID = msg.payload["item"];
         //Goto feed page with arg
         this.app.getRootNav().push(FeedPage, {postId:item});

});

现在我没有得到推送通知。有没有错?

0 个答案:

没有答案