ReferenceError: localStorage is not defined

前端 未结 3 2316
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-05 02:13

I am trying to make User Authentication with Angular and ASP.NET Core.

I am following the tutorial found here:

https://fullstackmark.com/post/10/user-authent

3条回答
  •  梦毁少年i
    2021-01-05 02:55

    The standard localStorage API should be available.

    No need to declare it.

    to set localStorage.setItem('name', 'storingSomething');

    to get localStorage.getItem('name');

提交回复
热议问题