gpt4 book ai didi

Angular 4 Http 拦截器 : next. handle(...).do 不是函数

转载 作者:太空狗 更新时间:2023-10-29 16:49:49 25 4
gpt4 key购买 nike

我创建这个 HTTPInterceptor 是为了能够更好地处理 http 错误,在我执行 git pull 并运行 npm install 之前它运行良好。

这是我的代码:

import {Injectable} from '@angular/core';
import {HttpEvent, HttpInterceptor, HttpHandler, HttpRequest, HttpResponse} from '@angular/common/http';
import {Observable} from "rxjs";
import {ToasterService} from "angular2-toaster";

@Injectable()
export class GobaeInterceptor implements HttpInterceptor {
constructor(private toasterService: ToasterService){
}
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
return next.handle(req)
.do(event => {
if (event instanceof HttpResponse) {
let response = event.body;
if(response.Error){
this.toasterService.pop('error', 'Error '+response.Code, response.Message);
}
}
});
}
}

这是我得到的错误:

TypeError: next.handle(...).do is not a function at GobaeInterceptor.webpackJsonp.../../../../../src/app/services/gobae.interceptor.ts.GobaeInterceptor.intercept (gobae.interceptor.ts:12) at HttpInterceptorHandler.webpackJsonp.../../../common/@angular/common/http.es5.js.HttpInterceptorHandler.handle (

最近是否有可能影响我的代码的更改?我现在可以做什么来在我的拦截器上“捕获”http 响应?

最佳答案

抛出此错误是因为您缺少 do 运算符。下面导入并使用 do 运算符修补可观察对象。

import 'rxjs/add/operator/do';

默认情况下,RxJs 并未捆绑所有运算符函数以减小库大小。您需要导入要单独使用的运算符。

关于Angular 4 Http 拦截器 : next. handle(...).do 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45846662/

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