AngularJS 表格

data-ng-repeat指令可以完美的显示表格。

使用AngularJS显示表格是是非常简单的。

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="X-UA-Compatible"content="IE=edeg" />
<meta name="viewport"content="width=device-width,initial-scale=1" />
<!--[if lt IE 9]>
<script src="http://apps.bdimg.com/libs/html5shiv/3.7/html5shiv.min.js"></script>
<script src="http://apps.bdimg.com/libs/respond.js/1.4.2/respond.js"></script>
<![endif]-->
<title></title>
<meta charset="utf-8" />
<link rel="stylesheet"href="bootstrap-3.3.5/dist/css/bootstrap.min.css" />
<style>
table, td {
border:solid 1px #c3c3c3;
padding:5px;
border-collapse:collapse;
}
table tr:nth-child(odd) {
background-color:#f1f1f1;
}
</style>
</head>
<body>
<div class="container" style="padding:50px">
<div data-ng-app="myApp"data-ng-controller="customerCtrl">
<table>
<tr data-ng-repeat="x in customers | filter:test | orderBy:'Country'">
<td>{{$index+1}}</td> <td>{{x.Name}}</td><td>{{x.City}}</td><td>{{x.Country}}</td>
</tr>
</table>


</div>
</div>
<script src="jQuery/jquery-2.1.4.js"></script>
<script src="bootstrap-3.3.5/dist/js/bootstrap.min.js"></script>
<script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>
<script>
angular.module("myApp", []).controller("customerCtrl", function ($scope, $http) { $http.get("json/customerJson.json").success(function (response) { $scope.customers=response.records}) })
</script>
</body>
</html>

原文地址:https://www.cnblogs.com/melao2006/p/5059788.html