- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在为一个组件使用 NgProgress
,它工作正常,在运行单元测试时也是如此。
我确实使用 HttpClientModule
对 HttpModule
进行了升级,看起来不错。我的问题是,当我运行单元测试时出现以下错误:
[object ErrorEvent] 抛出
错误:StaticInjectorError[NgProgress]:
StaticInjectorError [NgProgress]:
NullInjectorError:没有 NgProgress 的提供者!
错误通常会自行解释,但我就是无法摆脱它并修复它。
是否有任何修复或解决方法?我是否错过了有关 NgProgress
的任何更新或升级?
app.component.ts
:
...
import { HttpClient } from '@angular/common/http';
import { NgProgress } from '@ngx-progressbar/core';
...
constructor(..., public progress: NgProgress, ...) {...}
myFunction() {
...
this.progress.complete();
....
}
app.component.spec.ts
:
import { RouterTestingModule } from "@angular/router/testing";
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { HttpClient } from '@angular/common/http';
import { NgProgress } from '@ngx-progressbar/core';
....
describe("myComponent", () => {
let component: myComponent;
let fixture: ComponentFixture<myComponent>;
beforeEach(
async(() => {
TestBed.configureTestingModule({
imports: [
...
RouterTestingModule,
HttpClientTestingModule,
ReactiveFormsModule,
...
],
declarations: [myComponent],
providers: [
{ provide: MatDialogRef, useClass: MatDialogRefMock },
...
],
schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
}).compileComponents();
})
);
});
最佳答案
问题已修复...解决方案是在 configureTestingModule({...})
方法中的 Providers 数组中添加以下代码:
...
providers: [
{ provide: MatDialogRef, useClass: MatDialogRefMock },
...
{ provide: NgProgress }
],
....
关于angular - 如何将 Ngx Progress 与 `HttpClient` 和 `HttpClientModule` 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49116902/
docs在 HttpClientModule 上说: Before you can use the HttpClientModule, you need to import the Angular H
此代码如何更改为新的 HttpClientModule,其中不需要 response.json() 的映射。 //uses Http getLegalTerms(): Observab
我在 Angular 中有应用程序,我只有一个 HttpClientModule,但是当我在构造函数中提供 HttpClient 时,如下所示: export class UserService {
我只是第一次尝试使用 Angular 中的服务,我收到以下错误: ERROR TypeError: this.httpClientModule.get is not a function 我的服务文件
我刚刚将 angular 更新到版本 5.1.2。现在我从标题中提到的模块的导入中得到这个错误: Module '"c:/pdws-view-v2/node_modules/@angular/plat
The SVGViewer component在 Angular Material 文档应用程序中声明其模块如下: @NgModule({ exports: [SvgViewer], decl
Angular 正在从 HttpModule 转换为 HttpClientModule 并弃用前者,详见 Difference between HTTP and HTTPClient in angul
我正在我的 Angular 项目中实现 CSRF 保护。我已经升级到 4.3,并且根据 HttpClientModule 文档: https://angular.io/guide/http#secur
我是 Angular js 的新手,试图从 youtube 学习它,但我在我的代码中遇到了提到的问题 ,我不明白我的代码中缺少什么 错误 当我尝试访问 HttpClientModule 的获取服务时出
使用哪个构建模拟网络服务来测试 Angular 4 应用程序? 最佳答案 如果您使用的是 Angular 4.3.x 及更高版本,请使用 HttpClientModule 中的 HttpClient
我试图在假 json 服务器上构建一个简单的应用程序 但我无法导入 HttpClient模块 这是来自 的错误消息VS 代码 : ERROR in node_modules/@angular/comm
我遇到了一个关于新 HttpClientModule 和来自 RX.js 的 map() 函数的问题。 我想做的是更改来自 get() 方法的可观察对象中返回数组的对象。 我当前的代码: get(ur
在这篇文章中here和其他人:看起来您需要在 app.module.ts 中导入 HttpClientModule 并在 app.component.ts 中导入 HttpClient 才能发出 ht
我已经构建了一个拦截器,用于向 PHP 后端发出 HTTP 请求。 这个后端为应用程序提供了一个 JWT token ,我将它保存在 Ionic Storage 中。 但我想从 Storage 中获取
嗯,我正在按照以下基础架构构建我的项目: 功能模块。 核心模块。 共享模块。 但是有一点我还不太清楚。 据我所知,HttpClientModule 应该位于 CoreModule 中,因为...它提供
请查看两个答案。 (感谢 JLRishe 和 AngularInDepth.com) AngularInDepth 还在他的帖子中添加了有趣的拦截器和 HttpClient 机制链接: https:/
我是一个基于 Angular 的 UI 项目的新手,并使用 vscode 生成了两个新组件以供项目使用。但是,每当我将更改推送到 git(bitbucket) 时,我总是会收到错误,而当我在我的机器上
我正在探索新的 Angular HttpClientModule 并遇到莫名其妙的错误。该模块足够新,我还找不到任何关于如何进行单元测试的有用信息,而且官方文档也没有任何示例。 该应用程序包含一个具有
我是 Angular2 的新手,我正在学习进行 http 调用。 我发现 Angular2 有这两个模块: HttpModule from @angular/http 和 HttpClientModu
我通过运行 ng new first-project 安装了一个准系统 angular 6 项目,我得到了一个默认的应用程序模块和组件。现在,我通过运行 ng generate module view
我是一名优秀的程序员,十分优秀!