Ionic 2 モバイル アプリを開発しており、ngx-translate 機能を使用したいと考えています。チュートリアルに従って、次のように app モジュールに必要なファイルをインポートしています。
import { TranslateModule, TranslateLoader } from '@ngx-translate/core';
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
import { HttpModule, Http } from '@angular/http';
...
export function createTranslateLoader(http: Http) {
return new TranslateHttpLoader(http, './assets/i18n/', '.json');
}
エラーが発生します:
Argument of type 'Http' is not assignable to parameter of type 'Http'.
Property 'handler' is missing in type 'Http'
ngx-translate が期待するパッケージの不一致があると思いますが、何をどのように把握できません。@angular/http のバージョンは 4.3.2 です。