Angular no provider for NameService

后端 未结 18 1920
遇见更好的自我
遇见更好的自我 2020-11-30 18:44

I\'ve got a problem loading a class into an Angular component. I\'ve been trying to solve it for a long time; I\'ve even tried joining it all in a single file. What I have i

18条回答
  •  青春惊慌失措
    2020-11-30 19:36

    add your service to providers[] array in app.module.ts file. Like below

    // here my service is CarService

    app.module.ts

    import {CarsService} from './cars.service';
    
    providers: [CarsService] // you can include as many services you have 
    

提交回复
热议问题