Angular2组件中的DI错误

时间:2017-05-17 15:07:16

标签: angular dependency-injection angular2-services

Any help please i got this error when i try to inject the service to my component

当我尝试将服务注入我的组件

时出现此错误
  1. 我创建了我的服务并用@Injectable()

  2. 进行了装饰
  3. 我将我的服务添加到提供商的app.module

  4. 我尝试在我的组件中使用该服务并使用构造函数

    注入它

    但它给了我这个错误 The Service

  5. The App.moudle

    the component

1 个答案:

答案 0 :(得分:5)

您忘记将HttpModule添加到imports数组

@NgModule({
  imports: [
    BrowserModule,
    HttpModule,
    ...