[Angular 14] Providers in Angular Route

{
    path: 'admin',
    // load standalone component
    loadComponent: () => import('./feature/admin/admin.component').then(c => c.AdminComponent),
    // Swap UserLoaderService to ExperiemntalUserLoaderService for /admin route
    // This happen only for /admin route, Environment Injector Hierarchy 
    providers: [
        {provide: UserLoaderService, useExisting: ExperimentalUserLoaderService}
    ]    
}

 

Also you are able to use `Providers` in @Component, but it belongs to Node Injector Hierarchy.

posted @   Zhentiw  阅读(26)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2020-06-22 [Intro to Deep Learning with PyTorch -- L2 -- N35] Code: Analyzing Student Data
2017-06-22 [AngularJS] Learn how to use ng-options with ng-model for complex dataset
2016-06-22 [Webpack 2] Hashing with Webpack for long term caching
2016-06-22 [Webpack 2] Maintain sane file sizes with webpack code splitting
2016-06-22 [Webpack 2] Polyfill Promises for Webpack 2
2016-06-22 [Webpack 2] Tree shaking with Webpack 2
2016-06-22 [Webpack 2] Validate your Webpack config with webpack-validator
点击右上角即可分享
微信分享提示