ERROR Error: StaticInjectorError(AppModule)[UserformService -> HttpClient]:

前端 未结 9 1266
一整个雨季
一整个雨季 2021-02-03 17:55

While trying to add a PrimeNG table I broke my build here: https://github.com/BillyCharter87/Tech-O-Dex-UI/tree/BrokeIt

I recall updating my package.json fr

9条回答
  •  长情又很酷
    2021-02-03 18:13

    In my case there was a need for:

    @Injectable({
        providedIn: 'root'  // <- ADD THIS
    })
    export class FooService { ...
    

    instead of just:

    @Injectable()
    export class FooService { ...
    

提交回复
热议问题