在Angular中使用自定义cookie时,可能会遇到cookie未包含在请求头中的问题。解决方法如下所示。
import { Injectable } from '@angular/core'; import { HttpInterceptor, HttpRequest, HttpHandler } from '@angular/common/http';
@Injectable() export class MyHttpInterceptor implements HttpInterceptor {
intercept(req: HttpRequest
@NgModule({ ... providers: [ ... { provide: HTTP_INTERCEPTORS, useClass: MyHttpInterceptor, multi: true }, ... ], ... })
这些步骤将确保自定义cookie被发送到每个请求的头部。