ng-table
Posted 不了无明
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ng-table相关的知识,希望对你有一定的参考价值。
需要的文件:
- angular.js
- ng-table.js
- ng-table.css
- bootrasp.css
注入依赖:
var app = angular.module(‘app‘, [ ‘ngTable‘, ‘ui.bootstrap‘, ]);
为ng-table设置数据
app.controller(‘controller‘, function($scope,NgTableParams) { $http.get("/query") .success(function(data) { $scope.userTable = new NgTableParams({ page : 1, count : 5 }, { total : data.length, getData : data } }); }) }); }
为 table 添加 ng-table 属性
<table ng-table="userTable" class="table table-hover"> <tbody> <tr> <th>编号</th> <th>用户名</th> </tr> <tr ng-repeat="user in $data"> <td>{{user.id}}</td> <td>{{user.name}}</td> </tr> </tbody> </table>
以上是关于ng-table的主要内容,如果未能解决你的问题,请参考以下文章