在所有页面中只需要显示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 、、
需要帮助才能实现这一目标。
谢谢。
答案 0 :(得分:2)
您可以在组件中使用它
public ngOnInit(): void {
this.location.replaceState("/");
}
或者您可以执行以下操作
this.router.navigate(['/about-us'], { skipLocationChange: true });