Uncaught (in promise): Error: StaticInjectorError(AppModule)[options]

后端 未结 8 1690
借酒劲吻你
借酒劲吻你 2020-12-01 14:08

I have a strange error. Usually (I did my googling), in this case of errors Angular specifies in square brackets which exactly module/service/provider/etc caused the problem

8条回答
  •  不思量自难忘°
    2020-12-01 14:16

    I had the same error and I solved it by importing HttpModule in app.module.ts

    import { HttpModule } from '@angular/http';
    

    and then in the imports[] array:

    HttpModule
    

提交回复
热议问题