http响应中缺少自定义标头的角度

时间:2020-08-19 14:14:04

标签: angular http http-headers httprequest

我想在HTTP Get响应中读取我的自定义标头,但是我只有'cache-control'标头,而在Postman中发送相同的请求会返回更多标头。

返回的Angular响应:

Angular response

邮递员中的最新回复

Postman response

我在Angular中发送请求的方式:

const headers = new HttpHeaders({
  'Content-Type' : 'application/json',
  'Authorization': token
});

return this.http.get<any>(`${this.serviceUrl}/authorize`, { headers, observe: 'response', responseType: 'text' as 'json' });

我最关心的是“ Authenticated”标题。我该如何找回?

0 个答案:

没有答案