Skip to content

Instantly share code, notes, and snippets.

@seven-cd
Created August 26, 2017 08:44
Show Gist options
  • Save seven-cd/18a25d4c846be211f0d1981f02978731 to your computer and use it in GitHub Desktop.
Save seven-cd/18a25d4c846be211f0d1981f02978731 to your computer and use it in GitHub Desktop.
ng2router-route-params.js
constructor(
private activeRoute : ActivatedRoute,
) {
activeRoute.params.subscribe(params => {
this.id = params['id'];
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment