(TypeError: Cannot read property 'length' of null at HttpHeaders.applyUpdate) Angular 5, Http Client

后端 未结 2 881
时光取名叫无心
时光取名叫无心 2021-02-12 21:29

I\'m getting this reponse when making an http request in service.

Here\'s the Login component

export class LoginComponent {
  credentials: Credentials;
         


        
2条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-12 22:25

    Don't set Null value in Header

    I faced this kind of issue. The problem was in header, I was pushing null value i.e.

    cloned = req.clone({
        headers: req.headers.append('token', token) // token is null
    })
    

    to fix this, I check token before setting into header i.e.

    if (token) {
        cloned = req.clone({
            headers: req.headers.append('token', token)
        })
    }
    

提交回复
热议问题