Angular 添加预检请求 Headers

Angular Preflight Request to Add Headers

我在 Angular 8 中有这个项目 运行,并且确实调用了 api 的预检和实际 API。由于预检选项没有 header Strict-Transport-Security: max-age=31536000,我们的网络安全性存在问题; includeSubDomains 而实际的 GET api 有一个。

您是否知道如何以及在何处添加 Strict-Transport-Security:max-age=31536000;预检和实际请求下的 includeSubDomains 这样两个请求将具有相同的 headers?

这是在请求中设置HttpHeader的方法。

import {Injectable} from '@angular/core';
import {Http, Headers} from '@angular/http';

@Injectable()
export class HttpClient {

  constructor(private http: Http) {}

  get(url) {
    let headers = new Headers();
    headers.append('Transport-Security', 'max-age=31536000;includeSubDomains')

    return this.http.get(url, {
      headers: headers
    });
  }


}