显示单个URL以在Ionic 4 PWA中导航

时间:2019-12-30 12:24:27

标签: angular ionic-framework progressive-web-apps

在所有页面中只需要显示navigating的单个网址

例如:     http://localhost:8100/ (login page)     http://localhost:8100/ (home page)     http://localhost:8100/ (about-us page)

而不是     http://localhost:8100/home ,,,     http://localhost:8100/login ,,,     http://localhost:8100/about-us 、、

需要帮助才能实现这一目标。

谢谢。

1 个答案:

答案 0 :(得分:2)

您可以在组件中使用它

public ngOnInit(): void {
    this.location.replaceState("/");
}

或者您可以执行以下操作

this.router.navigate(['/about-us'], { skipLocationChange: true });