Angular Material - 虚拟滚动



md-virtual-repeat-container 是 md-virtual-repeat 组件的滚动容器。

属性

下表列出了 md-virtual-repeat-container 不同属性的参数和描述。

序号 参数及描述
1

md-top-index

将滚动容器顶部项目的索引绑定到 $scope。它可以读取和设置滚动位置。

2

md-orient-horizontal

确定容器是否应水平滚动(默认为垂直方向和滚动)。

3

md-auto-shrink

如果存在,则当项目数量小于其原始大小时,容器将缩小以适应项目数量。

4

md-auto-shrink-min

md-auto-shrink 将缩小的最小项目数(默认为 0)。

md-virtual-repeat

虚拟重复是 ng-repeat 的替代品,它只渲染足够的 html 元素来填充容器,并在用户滚动时重复使用它们。

属性

下表列出了 md-virtual-repeat 不同属性的参数和描述。

序号 参数及描述
1

md-item-size

重复元素的高度或宽度(每个元素必须相同)。这是可选的。如果缺少此属性,它会尝试从 DOM 中读取大小,但仍然假设所有重复节点具有相同的高度或宽度。

2

md-extra-name

计算结果为一个额外的名称,可以在重复的范围内为当前迭代项分配该名称(在 md-autocomplete 中使用时需要)。

3

md-on-demand

如果存在,则将 md-virtual-repeat 参数视为可以获取行的对象,而不是数组。此对象必须实现以下具有两种 (2) 方法的接口:

  • getItemAtIndex − function(index) [object] - 该索引处的项目,如果尚未加载,则为 null(在这种情况下,它应该开始下载该项目)。

  • getLength − function() [number] - 重复容器应调整为的大小数据长度。理想情况下,如果知道计数,此方法应返回它。否则,返回大于当前加载项的数量,以产生无限滚动的行为。

示例

以下示例显示了虚拟重复的使用。

am_virtualrepeat.htm

<html lang = "en">
   <head>
      <link rel = "stylesheet"
         href = "https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.css">
      <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
      <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-animate.min.js"></script>
      <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-aria.min.js"></script>
      <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-messages.min.js"></script>
      <script src = "https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.js"></script>
      <link rel = "stylesheet" href = "https://fonts.googleapis.com/icon?family=Material+Icons">
      
      <style>
         .vrepeatContainer #horizontal-container {
            height: 100px;
            width: 830px; 
         }

         .vrepeatContainer #vertical-container {
            height: 292px;
            width: 400px; 
         }

         .vrepeatContainer .repeated-item-horizontal {
            border-right: 1px solid #ddd;
            box-sizing: border-box;
            display: inline-block;
            height: 84px;
            padding-top: 35px;
            text-align: center;
            width: 50px; 
         }

         .vrepeatContainer .repeated-item-vertical {
            border-bottom: 1px solid #ddd;
            box-sizing: border-box;
            height: 40px;
            padding-top: 10px;
         }

         .vrepeatContainer md-content {
            margin: 16px; 
         }
         
         .vrepeatContainer md-virtual-repeat-container {
            border: solid 1px grey; 
         }	  
      </style>
      
      <script language = "javascript">
         angular
            .module('firstApplication', ['ngMaterial'])
            .controller('vrepeatController', vrepeatController);
           
         function vrepeatController ($scope) { 
            this.items = [];
            for (var i = 0; i < 1000; i++) {
               this.items.push(i);
            }
         }	  
      </script>      
   </head>
   
   <body ng-app = "firstApplication"> 
      <div class = "vrepeatContainer" ng-controller = "vrepeatController as ctrl"
         ng-cloak>
         <md-content layout = "column">
            <h2>Horizontal Repeat</h2>
            <md-virtual-repeat-container id = "horizontal-container" md-orient-horizontal>
               <div md-virtual-repeat = "item in ctrl.items"
                  class = "repeated-item-horizontal" flex>
                  {{item}}
               </div>
            </md-virtual-repeat-container>
            
            <h2>Vertical Repeat</h2>
            <md-virtual-repeat-container id = "vertical-container">
               <div md-virtual-repeat = "item in ctrl.items"
                  class = "repeated-item-vertical" flex>
                  {{item}}
               </div>
            </md-virtual-repeat-container>
            
         </md-content>
      </div>
   </body>
</html>

结果

验证结果。

广告