如何使用角度片段将数据从一页传递到另一页?

时间:2019-05-07 09:02:46

标签: angular ionic4 angular7-router

我试图在导航到另一页的同时向另一页发送数据。

this.router.navigateByUrl('/homePage', { fragment:"hello world"});

我不确定如何在首页中接收片段。 我在主页上尝试过以下操作的方法。

ngOnInit() {
    this.router.fragment.subscribe((fragment: any) => {
      console.log("My hash fragment is here => ", fragment)
    })
}
  

我变得不确定,我不确定如何获得该片段的任何帮助...

1 个答案:

答案 0 :(得分:0)

通过更改以下内容,我可以在主页上打印console.log

this.router.navigateByUrl('/homePage', { fragment:"hello world"});

对此

this.router.navigate(['parameter-to-device'], { fragment:"hello world"});