如何监视本地存储更改

时间:2016-07-28 07:51:21

标签: angularjs

在您将此问题标记为重复之前,请注意我没有使用角度为$localstorage的服务。

如何查看本地存储更改?

我现在拥有的是:

var isUnlocked = window.localStorage.getItem('isUnlocked');
      if(isUnlocked === "true") {
        $scope.$apply(function () {
        $scope.unlocked = true;
      });
      }

现在的问题是,在刷新可见后,更改在逻辑上是第一个。我怎么能改变这个?

2 个答案:

答案 0 :(得分:3)

$scope.$watch与一个返回您希望观察的localStorage值的函数一起使用。

function getValue(){
    return window.localStorage.getItem('isUnlocked');
}

$scope.$watch(getValue, function(newValue){
    if (newValue === "true"){
        $scope.$apply(function(){ $scope.unlocked = true; });
    }
});

答案 1 :(得分:0)

您可以编写一个包装类,它在$ rootScope上发送一个事件,然后监听需要更新的事件。

'use strict';

(function(angular) {
  angular
    .module('myModule')
    .service('StorageService', ['$rootScope', function($rootScope) {
      this.getItem = function(key) {
        return localStorage.getItem(key) || undefined;
      };
      this.setItem = function(key, value) {
        localStorage.setItem(key, value);
        $rootScope.$emit('STORAGE_SERVICE_' + key.toUpperCase() + '_UPDATED');
      }
    }]);
})(window.angular);

(function(angular) {
  angular
    .module('myModule')
    .controller('myController', ['$scope', 'StorageService', function($scope, StorageService) {
      $scope.$on('STORAGE_SERVICE_ISUNLOCKED_UPDATED', function() {
        var isUnlocked = StorageService.getItem('isUnlocked');
        if(isUnlocked === "true") {
          $scope.$apply(function () {
            $scope.unlocked = true;
          });
        }
      });
    }]);
})(window.angular);