Argument of type 'string | null' is not assignable to parameter of type 'string'. Type 'null' is not assignable to type 'string'

后端 未结 2 1667
难免孤独
难免孤独 2020-12-13 06:10

I have a dotnetcore 20 and angular4 project that I am trying to create a userService and get the user to my home component. The backend works just fine but the service doesn

2条回答
  •  暖寄归人
    2020-12-13 07:00

    the accepted answer is correct, just wants to add a newer and shorter answer.

    this.currentUser = JSON.parse(localStorage.getItem('currentUser')!);
    

提交回复
热议问题