读取标题属性(例如位置)

时间:2018-08-26 00:33:06

标签: angular

我的信息

在位置标头中设置了指向资源的链接,例如Google.com/test

我不确定这是什么意思。我应该阅读标题在哪里吗? 我尝试打印this.res.headers.get('location'),但不起作用

  

错误TypeError:无法读取未定义的属性“ get”

  activateResultContent() {
    this.loading = true;
    this.sub$.pipe(
      switchMap(formData => this.getData(formData)))
      .subscribe((res: Response) => {
        console.log(res.headers.get('location'));
        //this.description = data.description;
        this.loading = false;
      },
        error => {
          console.error('error');
        });
    this.sub$.next(this.urlShortenerForm.value);
  }

0 个答案:

没有答案