ホームページ > 記事 > ウェブフロントエンド > table_AngularJS をカスタマイズするための AngularJS のディレクティブ
まずフォームの要件について説明します:
●テーブル構造
<table> <thead> <tr> <th>Name</th> <th>Street</th> <th>Age</th> </tr> </thead> <tbody> <tr> <td>></td> <td>></td> <td>></td> </tr> </tbody> </table> <div>4行</div>
● 列をクリックして並べ替えます
● ヘッダーにエイリアスを付けることができます
● 特定の列を表示するかどうかを設定できます
● テーブルの下に合計行数を示す行があります
テーブルを次のようにしたいとします:
<table-helper datasource="customers" clumnmap="[{name: 'Name'}, {street: 'Street'}, {age: 'Age'}, {url: 'URL', hidden: true}]"></table-helper>
上記の datasource のデータ ソースはコントローラーの $scope.customers から取得されており、おおよその形式は {name: 'David', street: '1234 Anywhere St.', age: 25, url: 'index .html'} 、詳細は省略します。
columnmap は、列のエイリアスを設定し、列を表示するかどうかを決定します。
それを達成するにはどうすればよいですか?
ディレクティブはおおよそ次のようなものです:
var tableHelper = function(){ var template = '', link = function(scope, element, attrs){ } return { restrict: 'E', scope: { columnmap: '=', datasource: '=' }, link:link, template:template }; } angular.module('directiveModule') .directive('tableHelper', tableHelper);
具体的には、
まず、データソースの変更を監視します。変更があった場合は、テーブルをリロードします。
scope.$watchCollection('datasource', render); //初始化表格 function render(){ if(scope.datasource && scope.datasource.length){ table += tableStart; table += renderHeader(); table += renderRows() + tableEnd; //加载统计行 renderTable(); } }
テーブルのロードは、テーブルヘッダのロード、テーブル本体のロード、統計行のロードの 3 つのステップに大別されます。
//加载头部 function renderHeader(){ var tr = '<tr>'; for(var prop in scope.datasource[0]){ //{name: 'David',street: '1234 Anywhere St.',age: 25,url: 'index.html'} //根据原始列名获取别名,并考虑了是否显示列的情况 var val = getColumnName(prop); if(val){ //visibleProps存储的是原始列名 visibleProps.push(prop); tr += '<th>' + val + '</th>'; } } tr += '</tr>'; tr = '<thead>' + tr '</thead>'; return tr; } //加载行 function renderRows(){ var rows = ''; for(var i = 0, len = scope.datasource.length; i < len; i++){ rows += '<tr>'; var row = scope.datasource[i]; for(var prop in row){ //当前遍历的原始列名是否在visibleProps集合中,该集合存储的是原始列名 if(visibleProps.indexOf(prop) > -1){ rows += '<td>' + row[prop] + '</td>'; } } rows += '</tr>'; } rows = '<tbody>' + rows + '</tbody>'; return rows; } //加载统计行 function renderTable(){ table += '<br /><div class="rowCount">' + scope.datasource.length + '行</div>'; element.html(table); table = ''; }
テーブルヘッダーをロードするとき、元の列名に基づいてエイリアスを取得するメソッドが使用されます。
//根据原始列名获取列的别名,并考虑是否隐藏列的情况 function getColumnName(prop){ if(!scope.columnmap) return prop; //得到[{name: 'Name'}] var val = filterColumnMap(prop); if(val && val.length && !val[0].hidden) return val[0][prop]; else return null; }
getColumnName メソッドでは、元の列名に基づく列が使用されます
//比如根据name属性,这里得到[{name: 'Name'}] //[{name: 'Name'}, {street: 'Street'}, {age: 'Age'}, {url: 'URL', hidden: true}] function filterColumnMap(prop) { var val = scope.columnmap.filter(function(map) { if (map[prop]) { return true; } return false; }); return val; }
具体的なコードは次のとおりです:
(function(){ var tableHelper = fucntion(){ var template = '', link = function(scope, element, attrs){ var headerCols = [], //表头列们 tableStart = '
上記は、AngularJS のディレクティブを使用したテーブルのカスタマイズについて編集者が共有した知識です。お役に立てば幸いです。