我正在提出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);
}