$ localstorage vs angularjs中的cookie

时间:2017-01-12 18:40:55

标签: angularjs cookies local-storage

当通过angularjs中的cookies和localstorage时,它们意味着相同并且仍然存在疑问,所以,我的问题是:

1. cookies和localstorage之间的主要区别是什么?

2.我们在哪种情况下使用这些?

3.他们如何彼此不同?

4.给出cookie和localstorage的一个例子(为了更好地理解)

1 个答案:

答案 0 :(得分:1)

嗯,以下链接将回答上述所有问题,除了最后一个问题。

Local Storage vs Cookies

为COOKIE演示

http://jsfiddle.net/sajeetharan/bs3paa6v/

本地存储演示



<!DOCTYPE html>
<html ng-app="app">

  <head>
    <script data-require="angular.js@1.1.5" data-semver="1.1.5" src="http://code.angularjs.org/1.1.5/angular.min.js"></script>
    <script src="https://rawgithub.com/gsklee/ngStorage/master/ngStorage.js"></script>
    
    <script>
      angular.module('app', [
        'ngStorage'
      ]).
      
      controller('Ctrl', function(
        $scope,
        $localStorage
      ){
        $scope.$storage = $localStorage.$default({
          x: 42
        });
      });
    </script>
  </head>

  <body ng-controller="Ctrl">
    <button ng-click="$storage.x = $storage.x + 1">{{$storage.x}}</button> + <button ng-click="$storage.y = $storage.y + 1">{{$storage.y}}</button> = {{$storage.x + $storage.y}}
  </body>

</html>
&#13;
&#13;
&#13;