0

我只是用 ngStorge 弄湿了我的脚,所以这可能很简单。

我正在使用https://github.com/gsklee/ngStorage

这是他们的读/写演示:

<!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>

http://plnkr.co/edit/3vfRkvG7R9DgQxtWbGHz?p=preview

我想为存储的名称/密钥使用 var。

所以而不是:

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

我想使用:

var testx = 'x';

并使用 .x 的 testx

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

提前致谢。

4

1 回答 1

3

如果我理解正确,您可以使用如下代码中的括号表示法:

<button ng-click="$storage[ testx ] = $storage[ testx ] + 1">{{$storage[ testx ]}}</button>
于 2015-07-03T22:16:08.053 回答