I have api which return json response and I want to store that json response in localstorage to use that response in my another html page using angularjs.
Here is my
On your request.success(),use
window.localStorage['storageName'] = angular.toJson(data);
Then you can access the data in localstorage by
var accessData = window.localStorage['storageName'];