web-dev-qa-db-ja.com

ngx-translate / core「エラー:HttpClientのプロバイダーがありません!」

パッケージngx-translate/coreをダウンロードし、ドキュメントの指示に従いました。

翻訳が機能しません。私が作ったステップ:

1] AppModuleですべてを定義する

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { TranslateModule } from '@ngx-translate/core';
import { HttpClientModule, HttpClient } from '@angular/common/http';
import { TranslateLoader } from '@ngx-translate/core';
import { TranslateHttpLoader } from '@ngx-translate/http-loader';

import { routing } from './app.routes';

import { AppComponent } from './app.component';

export function HttpLoaderFactory(http: HttpClient) {
  return new TranslateHttpLoader(http);
}

    @NgModule({
     declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    FormsModule,
    HttpModule,
    routing,
    TranslateModule.forRoot({
      loader: {
        provide: TranslateLoader,
        useFactory: HttpLoaderFactory,
        deps: [HttpClient]
      }
    })
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

2] AppComponentですべてを定義する

import { Component } from '@angular/core';
import { TranslateService } from '@ngx-translate/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css'],
  providers: []
})
export class AppComponent {
  param = { value: 'world' };

  constructor(private router: Router, translate: TranslateService) {
    // this language will be used as a fallback when a translation isn't found in the current language
    translate.setDefaultLang('en');

    // the lang to use, if the lang isn't available, it will use the current loader to get them
    translate.use('en');
  }
}

3] html

<div>{{ 'HELLO' | translate:param }}</div>

4]そして最後に、assets/i18n/en.jsonに作成されます

{
    "HELLO": "Hi There"
}

以下のスクリーンショットでこれらのエラーが発生し続ける Errors the popup in the browser console

何が悪いのですか?

12
Willy

この ngx-translate/coreは古いHttpClientModuleの代わりに最新のHttpModuleを使用しますNgModuleのimports配列で以下を変更します

import { HttpClientModule } from "@angular/common/http";

  imports: [
    BrowserModule,
    FormsModule,
    HttpClientModule, // the change from http module
    routing,
    TranslateModule.forRoot({
      loader: {
        provide: TranslateLoader,
        useFactory: HttpLoaderFactory,
        deps: [HttpClient]
      }
    })
  ]

詳しくは angular 4? のHTTPとHTTPClientの違い)をご覧ください。

25
Rahul Singh