Dans app.ts je cherche à accéder à home/contract-view/10
sur une action. A tenté
this.router.navigateToRoute(`home/contract-view`, { id: 10}, { absolute: true });
échoue avec Route home/contract-view not be found
Un autre essai:
this.router.navigate(`#/home/contract-view`, { id: 10});
échoue avec Route not found: contract-view(…)
Comment y parvenir? App.ts:
configureRouter(config: RouterConfiguration, router: Router) {
config.title = 'Contracts Portal';
config.map([
{ route: ['', 'dummy'], name: 'dummy', moduleId: 'dummy', nav: false, title: 'Dummy', settings: { pos: 'left' } },
{ route: 'home', name: 'home', moduleId: 'home', nav: true, title: 'Home', settings:{pos: 'left', class: 'home' }, auth: true },
]);
this.router = router;
}
Home.ts:
configureRouter(config: RouterConfiguration, router: Router) {
config.map([
{ route: ['', 'contract-view/:id'], name: 'contract-view', moduleId: 'contract-view', nav: true, title: 'Contract' },
{ route: 'doc-view/:id', name: 'doc-view', href:'doc-view', moduleId: 'doc-view', nav: true, title: 'Document' },
]);
this.router = router;
this.router.refreshNavigation();
}
Vous avez un routeur dans 'home' configuré avec contract-view/:id
, vous avez donc besoin de this.router.navigate('home/contract-view/10')
. Et essayez de supprimer aussi this.router.refreshNavigation()
la solution préférée consiste à utiliser les itinéraires nommés que vous avez configurés dans le routeur.
this.router.navigateToRoute('contract-view', {id: 10});
Merci @valichek, Il suffisait de le rendre this.router.navigate('/home/contract-view/10')
pour que cela fonctionne. Ce /
supplémentaire au début a fait la différence.