Guest User

Untitled

a guest
Apr 23rd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. {path: "product/:id" }
  2.  
  3. routerLink="/product/30"
  4.  
  5. import {Router, ActivatedRoute} from '@angular/router';
  6.  
  7. this.activatedroute.params.subscribe(params => {
  8. console.log(params, params['rowid']);
  9. this.id = params['rowid']
  10. }
  11. });
Add Comment
Please, Sign In to add comment