I'm using $sessionStorage
in a service in angular to store date and fetch it in another page. (I'm using SPA).
I can get the data perfectly inside the page, but when I refresh the page , the data from the service is deleted.
Why angular deletes the data from the service? And what should I do to kee p it after I refresh the page?
Thank you.
COOKIES SOLUTION
First, you need to import ngCookies to your angular app
After that, remember to import the angular cookies scripts:
And add the dependency:
After that, you will be able to call the ngCookies method from angular, and then store and recover the data stored in the cookie:
The example on angularJS API:
Hope it helps.