开发者问题收集

TypeError:无法读取未定义的属性“length”(Angular 8)(header)

2019-10-22
4156

当我尝试注销时出现此错误。

`core.js:6014 ERROR TypeError: Cannot read property 'length' of undefined
    at http.js:165
    at Array.forEach (<anonymous>)
    at HttpHeaders.lazyInit (http.js:153)
    at HttpHeaders.init (http.js:274)
    at HttpHeaders.forEach (http.js:376)
    at Observable._subscribe (http.js:2342)
    at Observable._trySubscribe (Observable.js:42)
    at Observable.subscribe (Observable.js:28)
    at subscribeTo.js:20
    at subscribeToResult (subscribeToResult.js:7)`

但是当我从邮递员发送 HTTP 请求时,代码有效。 当我使用邮递员时,我成功注销

我的身份验证服务

`logout(user){
    let headers = new HttpHeaders({
      'Content-Type': 'application/json',
      'Authorization': this.token }); //this.token is the value of token(eyJhbGciOiJIUzI1NiIsInR5cCI6IkpX...)
  let options = { headers: headers };
    localStorage.clear()
    this.token=null;
    return this.http.post<response>('http://localhost:3000/users/logout',null,options).pipe(map(res=>{
      console.log(res)
       return res
    }))}

` 这是我订阅此 http 请求的代码:

 onLogout(){

    this.authService.logout(this.dataService.storingToken).subscribe(res=>{
      console.log(res)
      if(res.status===true){
      this.router.navigate(["/login"])

 }else{
        console.log("some error has occurred")
      }
    })
  }
2个回答

该错误不是来自您的代码(但由它引起)。

错误引用了 Angular HttpClient 模块的 http.js 第 165 行,即以下代码片段(至少在 Angular 8 中):

        this.lazyInit = (/**
         * @return {?}
         */
        () => {
            this.headers = new Map();
            Object.keys(headers).forEach((/**
             * @param {?} name
             * @return {?}
             */
            name => {
                /** @type {?} */
                let values = headers[name];
                /** @type {?} */
                const key = name.toLowerCase();
                if (typeof values === 'string') {
                    values = [values];
                }
                if (values.length > 0) { // <=== THIS IS WHERE THE ERROR IS ===
                    this.headers.set(key, values);
                    this.maybeSetNormalizedName(name, key);
                }
            }));
        });

很可能是未设置标头的值。我建议首先将标头全部删除,然后查看错误是否消失。如果确实消失,请一次添加回来。

查看是否实际设置了令牌(即它不是未定义的)。您可以在 logout() 方法的开头添加一个 console.log(this.token)。

此外,大多数情况下您不需要明确设置 Content-Type,因为 Angular 在大多数情况下可以自动处理该问题。您可以删除它,看看是否有任何不同。

您成功注销的事实可能意味着您在 Postman 中正确(明确)传递了标头,但在 Angular 中没有正确传递它们(如错误所示)。此外,您的后端可能没有正确进行验证。因此,您可以使用 Postman 注销这一事实与此问题没有太大关系。

ulmas
2019-10-22

我认为未设置标头。您可以尝试以这种方式设置标头 在您的类中创建一个属性 headers: any = ''

this.headers = new HttpHeaders().set("Content-Type", "application/json") .set("Authorization",this.token)

稍后在您的请求中使用它们

suyash chaudhari
2019-10-23