ng-repeat 指令可以完美的显示表格。
在表格中显示数据
<div ng-app="myApp" ng-controller="customersCtrl"> table> tr ng-repeat="x in names"> td>{{ x.Name }}</>{{ x.Country }}tr> > divscript type="text/javascript" src="js/angular.min.js"></script> var app = angular.module('myApp,[]); app.controller(customersCtrlfunction($scope,$http) { $http.get("js/text.json) .success((response) {$scope.names response.records;}); }); >
使用 CSS 样式
style> table,th,td { border: 1px solid grey; border-collapse collapse padding 5px; } table tr:nth-child(odd) background-color #f1f1f1 table tr:nth-child(even) #ffffff} >
使用 orderBy 过滤器
排序显示,可以使用 orderBy 过滤器:
="x in names | orderBy : 'Country'">
使用 uppercase 过滤器
使用 uppercase 过滤器转换为大写:
>{{ x.Country | uppercase }}>
结果如图:
显示序号 ($index)
>{{ $index + 1 }}>
结果如图:
使用 $even 和 $odd
td ng-if="$odd" style="background-color:#f1f1f1"="$even">
结果如图:
转载地址:http://www.runoob.com/angularjs/angularjs-tables.html