我想在HTTP Get响应中读取我的自定义标头,但是我只有'cache-control'标头,而在Postman中发送相同的请求会返回更多标头。
返回的Angular响应:
邮递员中的最新回复
我在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”标题。我该如何找回?