63

我正在使用 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();
  }));

任何帮助是极大的赞赏!

4

5 回答 5

110

在你的测试中

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

它应该是

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

甚至更好(如果你想模拟请求):

TestBed.configureTestingModule({
      imports: [HttpClientTestingModule],
      providers: [FlexSearchService]
    });
于 2017-10-04T16:51:28.737 回答
25

导入 HttpClientTestingModule。

在您的测试中:

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

并在您的测试的 configureTestingModule 中,执行以下操作:

TestBed.configureTestingModule({
    imports: [ HttpClientTestingModule ],
})
.compileComponents();
于 2018-06-04T14:11:10.207 回答
12

一种更简单的方法是在全局范围内提供它......将以下内容导入 app.module.ts 中,如下所示:

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

并在导入中声明:

  imports: [
    HttpModule,
    HttpClientModule, ...
]
于 2018-01-06T19:07:43.243 回答
5

为此,您必须导入以下内容:

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

对于测试中的规范文件configureTestingModule,请执行以下操作:

TestBed.configureTestingModule({
    imports: [ HttpClientTestingModule ],
})
.compileComponents();
于 2020-07-08T12:03:37.823 回答
1

当我尝试使用 npm 链接在我的项目中本地链接我的角度库时,我注意到了这个问题。

从存储库下载库解决了我的问题。

于 2020-08-30T17:41:14.503 回答