0

我正在尝试在导航到另一个页面时将数据发送到另一个页面。

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

我不确定如何在我的主页中接收我的片段。我在我的主页下面尝试了他的内容。

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

我越来越不确定我不确定如何获得片段的任何帮助......

4

1 回答 1

0

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

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

对此

this.router.navigate(['parameter-to-device'], { fragment:"hello world"});
于 2019-05-07T09:10:06.257 回答