getOrders(): Observable<any> { return this.http.get<any>('url');
}这么写只能获取到数据,但是token在header里边,怎么才能获取到headers呢?在控制台能看到response的header,但是在代码里怎么才能拿到?
1 回答
撒科打诨
TA贡献1934条经验 获得超2个赞
如果用的 http
this.http.get('url').subscribe(res => { console.log(res.headers.get('xxx')) })
如果用的 httpClient
this.httpClient.get('url',{observe:'response'}).subscribe(res => { console.log(res.headers.get('xxx')) })
- 1 回答
- 0 关注
- 2454 浏览
添加回答
举报
0/150
提交
取消