在解析HEAD请求的[URL]期间,Angular会抛出Http失败

时间:2018-04-10 05:03:44

标签: javascript angular typescript http

我正在提出HEAD请求。请求有200个状态代码,但Angular会触发错误

"Http failure during parsing for [url]"

我已设置responseType: 'text'。但是,我仍然遇到同样的错误。我错过了什么?

getNames(queryStr: string): Promise<string> {
    return this.http.head(endpoints.getNameUrl(queryStr), {responseType: 'text'})
      .toPromise()
      .then(this.handleResponse)
      .catch(this.handleError);

}

private handleResponse(response: string): Promise<string> {
    console.log(response)
    return Promise.resolve(response);
  }

0 个答案:

没有答案