• Ⅱ.AngularJS的点点滴滴缓存


    模板缓存-$templateCache and 缓存工厂 $cacheFactory


    1.使用script标签

    <html ng-app>
    <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.2/angular.js"></script>
    <body>
    <div ng-include='"test"'></div>
    <script type="text/ng-template" id="test">
      This is the content of the template
    </script>
    </body>
    </html>
    • 如果使用script标签,那么就要加上type为text/ng-template

    • ng-include的值必须用'""'或者"''",只有一个单引号或者双引号的时候会无效

    2.使用url地址文件

    <html ng-app>
    <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.2/angular.js"></script>
    <body>
    <div ng-include='"test.html"'></div>
    </body>
    </html>
    • 在目录下新建test.html文件即可

    3.使用js脚本

    <html>
    <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.2/angular.js"></script>
    <body>
    <div ng-include='"test"'></div>
    <script>
      angular.module('app.ui', [])
       .run(['$templateCache','$cacheFactory',
         function($templateCache,$cacheFactory) {
           var cachetest = $cacheFactory('cache');
           cachetest.put('a','This is the content of the template');
      }]);
      angular.module('app', ['app.ui'])
        .run(['$templateCache','$cacheFactory',
          function(temp,cache) {
           var cachetest = cache.get('cache');
          temp.put('test',cachetest.get('a') );
           cachetest.destroy();
        }]);
      angular.bootstrap(document, ['app']);
    </script>
    </body>
    </html>

    $templateCache里面存放的是键值对的数据,有$cacheFactory创建对象一样的方法

    $cacheFactory创建的的对象,有如下方法

    1. {object} info() — 返回大小、id、一些缓存的参数
    2. {value} put(key,value) — 插入键值对,键为字符串,值为任何类型,返回键值对中的值
    3. {value} get(key) —通过键返回值,如果不存在返回 undefined
    4. {void} remove(key) — 通过键来移除,无返回值
    5. {void} removeAll() — 移除所有的模板缓存,无返回值
    6. {void} destroy() —移除当前创建的缓存($templateCache无效)

    $cacheFactory有所创建的对象直接通过$cacheFactory('cacheID',[,option])

    其中的option对象主要有capacity参数为数字类型设置最大的列表长度, 默认值为Number.MAX_VALUE,当超过的时候最早的会被移除,当设置最长长度为2的时候, 方法如下

      $cacheFactory('cache',{capacity:2});

    获取的时候调用get方法参数为cache的ID即可,当不存在时返回undefined


    作者:cnljli
    欢迎转载,但还请尊重劳动果实,保留此段声明并注明原文链接。
  • 相关阅读:
    软件工程
    python 浮点数四舍六入五成双
    python 比较内嵌字典的值
    python 之多继承顺序及supper()方法执行顺序
    python之装饰器进化
    Centos7 安装Postgres10
    hive常用操作
    MySQL中case when else end 用法
    python写入日志文件时日志内容重复写入
    python向config、ini文件读取写入
  • 原文地址:https://www.cnblogs.com/cnlj/p/3443243.html
Copyright © 2020-2023  润新知