要让Angular HttpClient发送域cookie,您需要执行以下步骤:
在您的Angular应用程序中,确保已经启用了HttpInterceptor。
在HttpInterceptor中,将withCredentials属性设置为true。
以下是一个示例,展示如何在Angular应用程序中使用HttpInterceptor发送域cookie:
import { Injectable } from '@angular/core';
import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
import { Observable } from 'rxjs';
@Injectable()
export class AuthInterceptor implements HttpInterceptor {
intercept(req: HttpRequest, next: HttpHandler): Observable> {
// 将withCredentials属性设置为true
const modifiedRequest = req.clone({ withCredentials: true });
return next.handle(modifiedRequest);
}
}
import { NgModule } from '@angular/core';
import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
import { AuthInterceptor } from './auth.interceptor';
@NgModule({
declarations: [],
imports: [HttpClientModule],
providers: [
{
provide: HTTP_INTERCEPTORS,
useClass: AuthInterceptor,
multi: true
}
],
bootstrap: [AppComponent]
})
export class AppModule { }
现在,当您使用HttpClient发送请求时,它将包含域cookie。
请注意,这只适用于跨域请求。如果请求的域与您的应用程序的域相同,Angular HttpClient将自动发送域cookie。