javascript - localstorage changes with Angular -
so code looks like:
if (condition) { $scope.item = localstorage.getitem('item'); } else { $scope.item = default; }
depending on condition item update. want trigger $scope.item updated on query later in code, how can watch / best way do?
Comments
Post a Comment