跨域错误通常是由浏览器的安全机制引起的,可以通过 Spring Gateway 的 CORS 配置来解决。
spring: cloud: gateway: globalcors: corsConfigurations: '[/**]': allowedOrigins: "*" allowedMethods: - GET - POST - PUT - DELETE allowedHeaders: - Content-Type - Authorization maxAge: 3600
const httpOptions = { headers: new HttpHeaders({ 'Content-Type': 'application/json', 'Origin': 'http://localhost:4200' }) };
this.http.post('http://localhost:8080/api/example', data, httpOptions) .subscribe(response => { console.log(response); });
其中,'http://localhost:4200' 指的是你的 Angular 项目的域名。
这样就可以解决 Angular 发送请求到 Spring Gateway 时出现的跨域错误了。