具有未知列数的AngularJS动态表

时间:2015-01-08 23:34:29

标签: angularjs dynamic tabular

我是Angular的新手,我的项目需要一些起点。 如何通过鼠标单击背景从ajax数据创建新表? 我知道ajax数据的列数未知,并且可能会不时有所不同。

例如:

the first click on background = table 1, ajax request to /api/table
| A | B | C |
| 1 | 2 | 3 |
| 5 | 7 | 9 |

the second click on background = table 2 and server returns new data from the same url /api/table
| X | Y |
| 5 | 3 |
| 8 | 9 |

3 个答案:

答案 0 :(得分:33)

您基本上可以通过以下方式使用两个嵌套的ng-repeats:

<table border="1" ng-repeat="table in tables">
  <tr>
      <th ng-repeat="column in table.cols">{{column}}</th>
  </tr>
  <tr ng-repeat="row in table.rows">
    <td ng-repeat="column in table.cols">{{row[column]}}</td>
  </tr>
</table>

在控制器中:

function MyCtrl($scope, $http) {
    $scope.index = 0;
    $scope.tables = [];
    $scope.loadNew = function() {
        $http.get(/*url*/).success(function(result) {
            $scope.tables.push({rows: result, cols: Object.keys(result)});
        });
        $scope.index++;
    }
}

然后在某处调用loadNew(),例如。 <div ng-click="loadNew()"></div>

实施例: http://jsfiddle.net/v6ruo7mj/1/

答案 1 :(得分:2)

在你的背景元素上注册ng-click指令以通过ajax加载数据, 并使用ng-repeat显示不确定长度的数据

<div ng-click="loadData()">
    <table ng-repeat="t in tables">
        <tr ng-repeat="row in t.data.rows">
            <td ng-repeat="col in row.cols">
                {{col.data}}
            </td>
        </tr>
    </table>
</div>

在控制器中:

$scope.tables = [];

$scope.loadData = function() {
    // ajax call .... load into $scope.data

    $.ajax( url, {
        // settings..
    }).done(function(ajax_data){
        $scope.tables.push({
            data: ajax_data
        });
    });

};

答案 2 :(得分:1)

我有一个名为columns的列名数组和一个名为rows的行的2D数组。此解决方案适用于任意数量的行和列。在我的示例中,每行都有一个名为“item”的元素,其中包含数据。请务必注意,列数等于我们要显示的每行项数。

<thead> 
    <tr>
        <th ng-repeat="column in columns">{{column}}</th>
    </tr>
</thead>
<tbody>
    <tr ng-repeat="row in rows">
        <td ng-repeat="column in columns track by $index"> {{row.item[$index]}} </td>
    </tr>
</tbody>

希望这有帮助