localStorage is not defined (Angular Universal)

后端 未结 13 2502
情书的邮戳
情书的邮戳 2020-11-29 01:26

I am using universal-starter as backbone.

When my client starts, it read a token about user info from localStorage.

@Injectable()
export class UserSe         


        
13条回答
  •  一个人的身影
    2020-11-29 02:03

    Solved "getItem undefined" issue by below lines :

    if(window.localStorage){
          return window.localStorage.getItem('user');
    }
    

提交回复
热议问题