Defining the Route in my app-routing :
{ path: 'user/:id', component: UserDetailComponent },
Defining the Navigation
<a [routerLink]="['/user', user.id]">detail</a>
In UserDetailComponent
this.id = +this.route.snapshot.params['id'];
Firstly. I get user detail, but when I refresh page (userdetail/:id) I get this message error