更改URL而无需在Angular 7中重定向

时间:2019-02-16 11:23:53

标签: angular

我想在不重定向页面的情况下向网址添加路径。

就像我在/ home /页面上一样,我想在不触发重定向的情况下移至/ home / item1。

我在堆栈上发现了很多示例,但是它们都不在角度7中工作。

不能使用

location.go或location.replaceState

constructor(private location: Location) { }

我正在尝试找到角度7的方法。

1 个答案:

答案 0 :(得分:1)

使用Angular router

this.router.navigate(['/mypath']);