Http无法访问所有标头属性

时间:2016-08-29 12:28:03

标签: javascript http typescript http-headers

我试图从http响应标头中获取特定属性Link,在Postman中我可以看到标题中的17个属性,但是当我在我的应用程序中记录标题对象时,我得到了一半他们只。我怎么能得到余下的?

enter image description here

Postman中的相同请求

enter image description here

我使用的是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();
        }
    );
}

0 个答案:

没有答案