我正在使用CLI启动一个新的角度项目,并且遇到了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();
}));
非常感谢任何帮助!
答案 0 :(得分:51)
在你的考试中
TestBed.configureTestingModule({
providers: [FlexSearchService, HttpClientModule]
});
应该是
TestBed.configureTestingModule({
imports: [HttpClientModule],
providers: [FlexSearchService]
});
甚至更好(如果你想模拟请求):
TestBed.configureTestingModule({
imports: [HttpClientTestingModule],
providers: [FlexSearchService]
});
答案 1 :(得分:8)
更简单的方法是全局提供....将以下内容导入app.module.ts,如下所示:
import { HttpModule } from '@angular/http'
import { HttpClient, HttpClientModule } from '@angular/common/http';
并在导入中声明:
imports: [
HttpModule,
HttpClientModule, ...
]
答案 2 :(得分:3)
导入HttpClientTestingModule。
在你的测试中:
import { HttpClientTestingModule } from '@angular/common/http/testing';
并在测试的configureTestingModule中执行以下操作:
TestBed.configureTestingModule({
imports: [ HttpClientTestingModule ],
})
.compileComponents();
答案 3 :(得分:1)
为此,您必须导入以下内容:
import { HttpClientTestingModule } from '@angular/common/http/testing';
对于测试的configureTestingModule
中的spec文件,请执行以下操作:
TestBed.configureTestingModule({
imports: [ HttpClientTestingModule ],
})
.compileComponents();
答案 4 :(得分:0)
当我尝试使用npm链接在我的项目中本地链接我的角度库时,我已经注意到了这个问题。
从存储库下载库解决了我的问题。