web-dev-qa-db-ja.com

Angular 4エラー:HttpClientのプロバイダーがありません

CLIで新しいangularプロジェクトを開始していますが、HttpClientエラーのプロバイダーがありません。

モジュールのインポートにHttpClientModuleを追加しましたが、これはこのシナリオの通常の原因と思われます。それ以外の多くのオンラインを見つけられないので、私は問題が何であるかわからない。

私のapp.module.ts

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    HttpClientModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

そして私のサービス

@Injectable()
export class FlexSearchService {


    constructor(private http: HttpClient) {}

    getSavedSearchResult(index: string, queryName: string, query: string ): Observable<any> {
      const url = `${environment.flexUrl}/${index}/search`;
      const item = new SearchQuery({queryName: queryName, variables: {q: query}});
      return this.http.post(url, item);
    }
}

ngバージョンは次の出力を提供します

@angular/cli: 1.4.2
node: 6.9.4
os: darwin x64
@angular/animations: 4.4.4
@angular/common: 4.4.4
@angular/compiler: 4.4.4
@angular/core: 4.4.4
@angular/forms: 4.4.4
@angular/http: 4.4.4
@angular/platform-browser: 4.4.4
@angular/platform-browser-dynamic: 4.4.4
@angular/router: 4.4.4
@angular/cli: 1.4.2
@angular/compiler-cli: 4.4.4
@angular/language-service: 4.4.4
TypeScript: 2.3.4

私のtsconfig

{
  "compileOnSave": false,
  "compilerOptions": {
    "outDir": "./dist/out-tsc",
    "sourceMap": true,
    "declaration": false,
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "target": "es5",
    "typeRoots": [
      "node_modules/@types"
    ],
    "lib": [
      "es2017",
      "dom"
    ]
  }
}

私のテスト

import { TestBed, inject } from '@angular/core/testing';
import { HttpClientModule } from '@angular/common/http';
import { FlexSearchService } from './flex-search.service';

describe('FlexSearchService', () => {
  beforeEach(() => {
    TestBed.configureTestingModule({
      providers: [FlexSearchService, HttpClientModule]
    });
  });
  it('should be created', inject([FlexSearchService], (service: FlexSearchService) => {
    expect(service).toBeTruthy();
  }));

どんな助けも大歓迎です!

39
mrpotocnik

あなたのテストで

TestBed.configureTestingModule({
      providers: [FlexSearchService, HttpClientModule]
    });

そのはず

TestBed.configureTestingModule({
      imports: [HttpClientModule],
      providers: [FlexSearchService]
    });

またはそれ以上(リクエストをモックする場合):

TestBed.configureTestingModule({
      imports: [HttpClientTestingModule],
      providers: [FlexSearchService]
    });
63
Kevin Doyon

より簡単な方法は、グローバルに提供することです。以下のようにapp.module.tsにインポートします。

import { HttpModule } from '@angular/http'
import { HttpClient, HttpClientModule } from '@angular/common/http';

インポートで宣言します:

  imports: [
    HttpModule,
    HttpClientModule, ...
]
9
Mike Axle

HttpClientTestingModuleをインポートします。

テストでは:

import { HttpClientTestingModule } from '@angular/common/http/testing';

そして、テストのconfigureTestingModuleで、次を実行します。

TestBed.configureTestingModule({
    imports: [ HttpClientTestingModule ],
})
.compileComponents();
6
Mwiza