localStorage is not defined (Angular Universal)

后端 未结 13 2468
情书的邮戳
情书的邮戳 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:22

    I have also ran in to the same issue. You can write inside 'isBrowser' check by importing below statement.

    import { isBrowser } from 'angular2-universal';

提交回复
热议问题