Есть несколько способов достижения этого.
- С помощью директивы [routerLink]
- Метод navigate (Array) класса Router
- Метод navigateByUrl (string), который принимает строку и возвращает обещание
Атрибут routerLink требует, чтобы вы импортировали routingModule в функциональный модуль в случае, если вы лениво загрузили функциональный модуль или просто импортируете app-routing-module, если он не добавляется автоматически в массив импорта AppModule.
<a [routerLink]="['/user', user.id]">John Doe</a>
<a routerLink="urlString">John Doe</a> // urlString is computed in your component
// Inject Router into your component
// Inject ActivatedRoute into your component. This will allow the route to be done related to the current url
this._router.navigate(['user',user.id], {relativeTo: this._activatedRoute})
this._router.navigateByUrl(urlString).then((bool) => {}).catch()