在Angular中,HttpInterceptor可以用来拦截HTTP请求和响应,它可以用来处理一些通用的逻辑,如添加身份验证头,处理错误等。如果你想要在拦截器中等待订阅结果,你可以使用toPromise
方法将Observable转换为Promise,并使用async/await
来等待结果。
下面是一个示例代码:
import { Injectable } from '@angular/core';
import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
import { Observable } from 'rxjs';
@Injectable()
export class MyInterceptor implements HttpInterceptor {
constructor() {}
async intercept(req: HttpRequest, next: HttpHandler): Promise> {
// 处理请求前的逻辑,如添加身份验证头
const modifiedReq = req.clone({
headers: req.headers.set('Authorization', 'Bearer your-token')
});
// 发送修改后的请求并等待结果
const response = await next.handle(modifiedReq).toPromise();
// 处理响应后的逻辑,如处理错误
if (response.status === 401) {
// 处理未授权错误
}
return response;
}
}
在上面的示例中,我们首先处理请求前的逻辑,然后使用await
关键字等待订阅结果。一旦结果可用,我们就可以对响应进行处理,如检查响应状态码是否为401,并根据需要执行相应的操作。最后,我们将响应返回给调用方。
要使用此拦截器,你需要在providers
数组中将它添加到你的模块或服务提供商中:
import { NgModule } from '@angular/core';
import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
import { MyInterceptor } from './my-interceptor';
@NgModule({
imports: [
HttpClientModule
],
providers: [
{ provide: HTTP_INTERCEPTORS, useClass: MyInterceptor, multi: true }
]
})
export class AppModule { }
这样,该拦截器将应用于你的应用程序中的所有HTTP请求,并且你可以在拦截器中等待订阅结果。