我正在开发离子应用程序,我想在打开推送通知时推送到页面,但应用程序无法导航查看。
到目前为止,我的代码:
app.component.ts
this.oneSignal.handleNotificationOpened().subscribe((payload) => {
this.categoryService.goToView.next(post_id)
});
home.ts
this.categoryService.goToView.subscribe(id=>{
this.categoryService.getPostsFromServer({include:id}).subscribe(item=>{
this.itemTapped(item);
})
})
被点击
itemTapped(item) {
this.navCtrl.push(ViewPage, {
item: item
});
}
任何建议。