开发者问题收集

Angular 6:HttpHeaders 无法读取 Chrome 和 IE11 中的 null 属性“length”(Firefox 中则不行)

2018-07-13
7955

在我的 Angular6 应用程序下,我使用 HttpClient 并将一些标头注入到我的 htpp 调用中以从我的后端服务器获取数据:

我的服务:

@Injectable()
export class LoadUserInfosService {

  public _headers = new HttpHeaders().set('Content-Type', 'application/json');

  constructor(private httpClient: HttpClient) {}

  getUserPnsInfos(cuid): Observable<object> {
    const headers = this._headers.append('login', login);
    return this.httpClient.get(myBackUrl, {headers: headers});
  }
}

我正在订阅它的组件:

loadUserInfosFromPns(login) {
    this.loadUserInfosService.getUserPnsInfos(login).subscribe(infos => {
      let receivedInfos: any;
        receivedPnsInfos = infos ;
        console.log(receivedPnsInfos);
        if (pnsInfos !== null && receivedPnsInfos.cuid === cuid ) {
        } else {
          this.router.navigate(['unauthorized'], {skipLocationChange: true});
        }
      },
      error => {
        console.log(error);
      });
  }

在 Chrome 或 IE11 上运行时,我收到一些引用我的请求标头的错误:

TypeError: Cannot read property 'length' of null
    at HttpHeaders.push../node_modules/@angular/common/fesm5/http.js.HttpHeaders.applyUpdate (http.js:199)
    at http.js:170
    at Array.forEach (<anonymous>)
    at HttpHeaders.push../node_modules/@angular/common/fesm5/http.js.HttpHeaders.init (http.js:170)
    at HttpHeaders.push../node_modules/@angular/common/fesm5/http.js.HttpHeaders.forEach (http.js:235)
    at Observable._subscribe (http.js:1445)
    at Observable.push../node_modules/rxjs/_esm5/internal/Observable.js.Observable.subscribe (Observable.js:161)
    at subscribeTo.js:21
    at subscribeToResult (subscribeToResult.js:6)
    at MergeMapSubscriber.push../node_modules/rxjs/_esm5/internal/operators/mergeMap.js.MergeMapSubscriber._innerSub (mergeMap.js:127)

此错误仅出现在 Chrome IE11 中 - 而在 Firefox 请求很好,但我没有得到它

有什么想法或建议吗?

2个回答

这可能是由于您在某些 http 请求中设置了未定义/空标头而导致的。

Nikos Tsokos
2019-01-24

我遇到了同样的问题,但是当刷新页面时,我遇到了需要的 API,我通过参考一些示例并将以下几行添加到 httpClient(http:httpClient) 解决了这个问题

 return this.http.get('url, {header}).pipe(
        retry(1), catchError(this.handleError)
      )

retry 和 catch 错误是从 rxjs 运算符 导入的

import { catchError, map, retry } from 'rxjs/operators';

handleError 是处理错误的函数

这为我解决了错误

Chandhan Narayanareddy
2020-10-22