Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Du côté où tu veux envoyer la donnée
  2.  
  3. this.router.navigate(['/', 'monitoring', 'laPlage'], {
  4.           state: {
  5.             key: 'value'
  6.           }
  7.         });
  8.  
  9. // Du côté où tu veux récupérer les données
  10.  
  11. if (this.router.getCurrentNavigation().extras && this.router.getCurrentNavigation().extras.state) {
  12.       const extraData = this.router.getCurrentNavigation().extras.state;
  13.     // tu récupères avec extraData.key par ex
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement