Injecter ActivatedRouteSnapshot dans un composant ne fonctionne pas (et injecter ActivatedRoute non plus). Voici la trace de la pile :
"Error: Impossible de résoudre tous les paramètres pour ActivatedRouteSnapshot: (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?).
at SyntaxError.ZoneAwareError (http://localhost:4200/polyfills.bundle.js:7042:33)
at SyntaxError.BaseError [as constructor] (http://localhost:4200/vendor.bundle.js:73735:16)
at new SyntaxError (http://localhost:4200/vendor.bundle.js:6140:16)
at CompileMetadataResolver._getDependenciesMetadata (http://localhost:4200/vendor.bundle.js:19345:31)
at CompileMetadataResolver._getTypeMetadata (http://localhost:4200/vendor.bundle.js:19220:26)
at CompileMetadataResolver._getInjectableMetadata (http://localhost:4200/vendor.bundle.js:19208:21)
at CompileMetadataResolver.getProviderMetadata (http://localhost:4200/vendor.bundle.js:19450:40)
at http://localhost:4200/vendor.bundle.js:19408:49
at Array.forEach (native)
at CompileMetadataResolver._getProvidersMetadata (http://localhost:4200/vendor.bundle.js:19375:19)
at CompileMetadataResolver.getNonNormalizedDirectiveMetadata (http://localhost:4200/vendor.bundle.js:18848:30)
at CompileMetadataResolver._loadDirectiveMetadata (http://localhost:4200/vendor.bundle.js:18736:23)
at http://localhost:4200/vendor.bundle.js:18937:54
at Array.forEach (native)
at CompileMetadataResolver.loadNgModuleDirectiveAndPipeMetadata (http://localhost:4200/vendor.bundle.js:18936:41)"
Dans le composant, ActivatedRouteSnapshot est injecté comme suit :
constructor([...], private router: Router,
private route: ActivatedRouteSnapshot) {
[...]
}
ActivatedRouteSnapshot est fourni dans app.component.ts
:
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
providers: [[...], ActivatedRouteSnapshot]
})
Je tente d'accéder aux paramètres de la requête de manière similaire à ce qui est fait ici : https://stackoverflow.com/a/38997116/3433306
Selon la documentation, cela devrait être aussi simple que de l'ajouter aux paramètres du constructeur : https://angular.io/docs/ts/latest/api/router/index/ActivatedRouteSnapshot-interface.html
Qu'est-ce qui manque pour injecter avec succès ActivatedRouteSnapshot?