Я использую Angular 4, и я хочу передать некоторый объект маршрутизатору, но не обновляя параметры запроса.
user.component.ts
this.router.navigate(["/profile",{
action: 'edit',
user: {id: 1, name: 'test', email: '[email protected]'}
}]);
приложение-routing.module.ts
{ path: 'profile', component: UserProfileComponent }
пользовательский profile.component.ts
this.route.params.subscribe(params => {
});
Любая помощь?