如何通过接收推送通知在ios上打开指定页面

时间:2017-03-08 06:42:05

标签: ios angular ionic2

我已注册设备令牌

this.push.register().then((t: PushToken) => {
  return this.push.saveToken(t);
}).then((t: PushToken) => {
  console.log('Token saved:', t.token);
});

而且我也收到推送通知。这很好。 但是我想在推送点击时打开一个特定的视图页面。

在这里按下手柄:

this.push.rx.notification()
  .subscribe((msg) => {
    alert(msg.title + ': ' + msg.text);
  });

有什么想法吗?

0 个答案:

没有答案