How to save json response in local storage using angularjs?

前端 未结 6 644
野的像风
野的像风 2020-12-30 05:27

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

6条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-30 05:30

    I want to suggest this one because I used it and it works stable https://github.com/gsklee/ngStorage.

    After downloading and attaching it to your project you should add it as a dependency

        QAApp.controller('SearchCtrl', function ($scope, $http, $location,$localStorage) {
    
          $scope.search = function (searchtag) {
                   var request = $http({
                                  method: 'GET', 
                                  url: server + 'api/question/tagged/' + searchtag,
                                });
                        request.success(function(data, status, headers, config) {
                        $localStorage.qa = datal
                        $scope.qa = data;
                    });
    
    
    
      }
      }); 
    

提交回复
热议问题