如何使用带有transclude的Angular Directive对表进行排序

时间:2016-04-28 21:11:46

标签: javascript jquery angularjs html-table

我通过点击<th>创建了对表进行排序的指令,但无法对函数执行正确的排序。我的问题是如何按升序/降序对数据进行排序。 该指令可以与任何静态或动态表链接,然后使用tranclude和$ compile我们创建自己的表,我们应该能够对数据进行排序。

任何帮助或评论我的代码对我都有好处。

以下是小提琴的链接: http://jsfiddle.net/Lvc0u55v/3259/

<div class="container">
<div class="row">

  <table table-directive>
    <thead><tr>
      <th>Number</th>
      <th>First Name</th>
      <th>Last Name</th>
      <th>Points</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>5</td>
      <td>Eve</td>
      <td>Jackson</td>
      <td>94</td>
    </tr>
    <tr>
      <td>2</td>
      <td>John</td>
      <td>Doe</td>
      <td>80</td>
    </tr>
    <tr>
      <td>3</td>
      <td>Adam</td>
      <td>Johnson</td>
      <td>67</td>
    </tr>
    <tr>
      <td>4</td>
      <td>Jill</td>
      <td>Smith</td>
      <td>50</td>
    </tr>
    <tr>
      <td>4</td>
      <td>Jill</td>
      <td>Smith</td>
      <td>50</td>
    </tr>
    <tr>
      <td>4</td>
      <td>Jill</td>
      <td>Smith</td>
      <td>50</td>
    </tr>
    <tr>
      <td>4</td>
      <td>Jill</td>
      <td>Smith</td>
      <td>50</td>
    </tr>
    <tr>
      <td>4</td>
      <td>Jill</td>
      <td>Smith</td>
      <td>50</td>
    </tr>
    <tr>
      <td>4</td>
      <td>Jill</td>
      <td>Smith</td>
      <td>50</td>
    </tr>
    <tr>
      <td>4</td>
      <td>Jill</td>
      <td>Smith</td>
      <td>50</td>
    </tr>
  </tbody>
</table>
</div>
</div>

var myApp = angular.module('myApp',[]);

    myApp.directive('tableDirective', function($compile) {
        return{
        restrict: 'EAC',
        scope: {},
        link: function(scope, element, attrs){

           var table, thead, tableHead, cells, template, compileScope, template, tableBody, cellsLength, newRow, rowCount;

                compileScope = scope;
                cells = angular.element($('td'));
                table = angular.element($('table'));
                thead = angular.element($('th'));
                rowCount = element.find($('tr')).length;
                newRow = '';
                cellsLength = table[0].rows[0].cells.length;
                scope.thRows = [];
                scope.tdRows = [];
                scope.newArr = [];
                angular.forEach(thead, function(item) {
                    return scope.thRows.push(item.innerHTML);
                });
                angular.forEach(cells, function(item) {
                    scope.tdRows.push(item.innerHTML);
                });
                while(scope.tdRows.length) {
                    scope.newArr.push(scope.tdRows.splice(0, cellsLength));
                }


                // Add <td></td>  dependent  on cellsLength
                for (var i = 0; i < rowCount; i++) {
                    newRow += '<tr class="tbodyRow" ><td ng-repeat="n in newArr[' + i + '] track by $index">{{n}}</td></tr>';
                }

                scope.newArr.sort( function( a, b )
                {
                  // Sort by the 2nd value in each array
                  if ( a[1] == b[1] ) return 0;
                  return a[1] < b[1] ? -1 : 1;
                });
                scope.newArr.sort();
    ;

                tableHead = '<thead><tr><th ng-click="sortData($index)" class="thclass" ng-repeat="th in thRows">{{th}}</th></tr></thead>';
                tableBody = '<tbody>' + newRow + '</tbody>';

                template = angular.element(tableHead + tableBody);

                $compile(template)(compileScope);
                element.html(template);

                 scope.sortData = function ($index) {
                    alert('sort Data');
                    scope.index = $index;
                    alert(scope.index);
                };
        }
      }
    });
    //myApp.factory('myService', function() {});

    function MyCtrl($scope) {
        $scope.name = 'Superhero';
    }

2 个答案:

答案 0 :(得分:1)

您可以像这样对二维数组进行排序:

http://jsfiddle.net/Lvc0u55v/3261/

         scope.sortData = function ($index) {
            scope.index = $index;
            scope.newArr.sort(function (a, b) {
                return a[$index] > b[$index];
            });
        };

从此Post

答案 1 :(得分:0)

尝试构建一个以列标题为属性的对象数组,并使用ng-repeat上的angular orderBy过滤器