gpt4 book ai didi

Angular5/ng 测试错误 : TypeError: this. handler.handle 不是函数

转载 作者:太空狗 更新时间:2023-10-29 17:29:47 28 4
gpt4 key购买 nike

这是我的 Angular 配置:

Angular CLI: 1.7.2
Node: 6.10.0
OS: win32 x64
Angular: 5.2.5
... animations, common, compiler, compiler-cli, core, forms
... language-service, platform-browser, platform-browser-dynamic
... router

@angular/cli: 1.7.2
@angular-devkit/build-optimizer: 0.3.2
@angular-devkit/core: 0.3.2
@angular-devkit/schematics: 0.3.2
@ngtools/json-schema: 1.2.0
@ngtools/webpack: 1.10.1
@schematics/angular: 0.3.2
@schematics/package-update: 0.3.2
typescript: 2.6.2
webpack: 3.11.0

我的 package.json 文件:

{
"name": "xxxx",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.conf.json",
"build": "ng build --prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"ng2ninja": "ng2ninja"
},
"private": true,
"dependencies": {
"@angular/animations": "5.2.5",
"@angular/common": "5.2.5",
"@angular/compiler": "5.2.5",
"@angular/core": "5.2.5",
"@angular/forms": "5.2.5",
"@angular/platform-browser": "5.2.5",
"@angular/platform-browser-dynamic": "5.2.5",
"@angular/router": "5.2.5",
"@ng-bootstrap/ng-bootstrap": "^1.0.0",
"bootstrap": "4.0.0",
"core-js": "2.4.1",
"font-awesome": "4.7.0",
"rxjs": "5.5.6",
"tslint-sonarts": "^1.6.0",
"yarn": "^1.5.1",
"zone.js": "0.8.19"
},
"devDependencies": {
"@angular/cli": "^1.7.1",
"@angular/compiler-cli": "5.2.5",
"@angular/language-service": "5.2.5",
"@types/jasmine": "2.8.6",
"@types/jasminewd2": "2.0.3",
"@types/node": "8.5.2",
"@ng-bootstrap/ng-bootstrap": "1.0.0",
"angular-ide": "^0.9.39",
"codelyzer": "4.1.0",
"jasmine-core": "2.8.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "2.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "1.3.3",
"karma-firefox-launcher": "1.1.0",
"karma-jasmine": "1.1.1",
"karma-jasmine-html-reporter": "0.2.2",
"karma-json-reporter": "1.2.1",
"ng2ninja": "1.0.17",
"protractor": "5.2.2",
"ts-node": "4.1.0",
"tslint": "5.9.1",
"typescript": "2.6.2"
}
}

我在运行“ng test”命令时收到此错误消息:

 TypeError: this.handler.handle is not a function
at MergeMapSubscriber.__WEBPACK_IMPORTED_MODULE_2_rxjs_operator_concatMap__.a.call [as project] node_modules/@angular/common/esm2015/http.js:1174:28)
at MergeMapSubscriber._tryNext node_modules/rxjs/_esm2015/operators/mergeMap.js:109:1)
at MergeMapSubscriber._next node_modules/rxjs/_esm2015/operators/mergeMap.js:99:1)
at MergeMapSubscriber.next node_modules/rxjs/_esm2015/Subscriber.js:83:1)
at ScalarObservable._subscribe node_modules/rxjs/_esm2015/observable/ScalarObservable.js:42:1)
at ScalarObservable._trySubscribe node_modules/rxjs/_esm2015/Observable.js:171:1)
at ScalarObservable.subscribe node_modules/rxjs/_esm2015/Observable.js:159:1)
at MergeMapOperator.call node_modules/rxjs/_esm2015/operators/mergeMap.js:78:1)
at Observable.subscribe node_modules/rxjs/_esm2015/Observable.js:156:1)

这是我的测试:

import {TestBed, inject} from '@angular/core/testing';
import {HttpClientTestingModule, HttpTestingController} from '@angular/common/http/testing';
import {UserService} from './user.service';
import {environment} from '../environments/environment';
import {JwtInterceptorService} from './jwt-interceptor.service';
import {User} from './services/model/user';
import {HttpClient, HttpHandler} from '@angular/common/http';
...
it('should authenticate a user', () => {
// spy on the store method
spyOn(userService, 'storeLoggedInUser');

const credentials = {login: 'toto', password: 'titi'};
let actualUser;
userService.login(credentials).subscribe(fetchedUser => actualUser = fetchedUser);
...
});

经过分析调试,问题出在用户服务的“登录”方法的调用上。

浏览了大量帖子(和解决方案)后,我不明白我的错误消息的真正来源。

这是我的用户服务:

 login(credentials): Observable<User> {
var headers = new HttpHeaders();
headers.append('Content-Type', 'application/x-www-form-urlencoded');

var paramCredentials = "grant_type=password"
+ "&credentials=true"
+ "&scope=read write"
+ "&accept=application/json"
+ "&username=" + credentials.username
+ "&password=" + credentials.password;

return this.http.post<User>(`${environment.oAuthUrl}/oauth/token`, paramCredentials, {headers: headers}).pipe(
tap(user => this.storeLoggedInUser(user))
);
}

storeLoggedInUser(user) {
window.localStorage.setItem('jwtToken', JSON.stringify(user));
this.jwtInterceptorService.setJwtToken(user.token);
}

有什么想法吗?

最佳答案

对我来说,这个问题来自于尝试在我的提供程序中包含 HttpClientHttpHandler,如下所示:

providers: [
HttpClient,
HttpHandler
]

这会一直抛出错误 _TypeError: this.handle.handler is not a function

为了解决这个问题,我发现我可以从提供程序中删除 HttpClientHttpHandler,而是将 HttpClientTestingModule 添加到我的导入中,如下所示:

imports: [
HttpClientTestingModule
]

这为我在 Angular 7 的 Karma 单元测试中解决了这个特殊错误。

关于Angular5/ng 测试错误 : TypeError: this. handler.handle 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49167709/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com