angular-2-local-storage
angular-2-local-storage copied to clipboard
How to set and get values
Considering myself as a noob and couldnt figure out how to use setItem and getItem.
I am getting error at this point.
this.localStorage.setItems$.subscribe("cities", "Hello world");
Try this
this.localStorageService.set('cities','Hello world');
And for getting:
this.localStorageService.get('cities');