我正在使用一个名为ngStorage的模块来处理本地存储操作(
https://github.com/gsklee/ngStorage).让我说我在本地存储器中设置一个对象$localStorage.something = true;
如何查看此对象以确定它是否仍然可用于本地存储?
我试过:
如何查看此对象以确定它是否仍然可用于本地存储?
我试过:
$scope.$watch($localStorage.something,function(newVal,oldVal){ if(oldVal!==newVal && newVal === undefined){ console.log('It is undefined'); } });
你可以试试:
$scope.$watch(function () { return $localStorage.something; },oldVal){ if(oldVal!==newVal && newVal === undefined){ console.log('It is undefined'); } })