Voulez-vous un lien / HTML ou voulez-vous router impérativement / en code?
Lien : la directive RouterLink traite toujours le lien fourni comme un delta de l'URL actuelle:
[routerLink]="['/absolute']"
[routerLink]="['../../parent']"
[routerLink]="['../sibling']"
[routerLink]="['./child']"
[routerLink]="['child']"
[routerLink]="['../../parent', {abc: 'xyz'}]"
[routerLink]="['../../parent']" [queryParams]="{p1: 'value', p2: 'v2'}" fragment="frag"
Avec RouterLink, n'oubliez pas d'importer et d'utiliser la directives
baie:
import { ROUTER_DIRECTIVES } from '@angular/router';
@Component({
directives: [ROUTER_DIRECTIVES],
Impératif : La navigate()
méthode nécessite un point de départ (c'est-à-dire le relativeTo
paramètre). Si aucun n'est fourni, la navigation est absolue:
import { Router, ActivatedRoute } from '@angular/router';
...
constructor(private router: Router, private route: ActivatedRoute) {}
...
this.router.navigate(["/absolute/path"]);
this.router.navigate(["../../parent"], {relativeTo: this.route});
this.router.navigate(["../sibling"], {relativeTo: this.route});
this.router.navigate(["./child"], {relativeTo: this.route});
this.router.navigate(["child"], {relativeTo: this.route});
this.router.navigate(["../../parent", {abc: 'xyz'}], {relativeTo: this.route});
this.router.navigate(["../../parent"], {relativeTo: this.route,
queryParams: {p1: 'value', p2: 'v2'}, fragment: 'frag'});
this.router.navigate(["../../parent"], {relativeTo: this.route, skipLocationChange: true});