我试图从http响应标头中获取特定属性Link
,在Postman中我可以看到标题中的17个属性,但是当我在我的应用程序中记录标题对象时,我得到了一半他们只。我怎么能得到余下的?
Postman中的相同请求
我使用的是Typescript
private fetch = (): Observable<Response> => {
return this.http.get(this.endpoint, this.queryArgs).map(
(res) => {
console.log(res.headers);
/** Notify subscriber with the new pagination */
this.pagination.next(this.setPagination(res.headers));
return res.json();
}
);
}