AI教程网 - 未来以来,拥抱AI;新手入门,从AI教程网开始......

AngularJS 表格

Angular.js教程 AI君 61℃

AngularJS 表格

本节介绍了显示 AngularJS 表格的方法。

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


在表格中显示数据

使用 angular 显示表格是非常简单的:

AngularJS 实例

 <div ng-app="" ng-controller="customersController"> 

<table>
  <tr ng-repeat="x in names">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country }}</td>
  </tr>
</table>

</div>

<script>
function customersController($scope,$http) {
  $http.get("/statics/demosource/Customers_JSON.php")
  .success(function(response) {$scope.names = response;});
}
</script>


使用 CSS 样式

为了让页面更加美观,我们可以在页面中使用CSS:

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) {
  background-color: #ffffff;
}
</style>


排序显示

如果需要对表格进行排序,我们可以添加 orderBy 过滤器: 

AngularJS 实例

 <table>
  <tr ng-repeat="x in names | orderBy : 'Country'">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country }}</td>
  </tr>
</table>


使用 uppercase 过滤器

如果字母要转换为大写,可以添加 uppercase 过滤器: 

AngularJS 实例

 <table>
  <tr ng-repeat="x in names">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country | uppercase}}</td>
  </tr>
</table>

转载请注明:www.ainoob.cn » AngularJS 表格

喜欢 (0)or分享 (0)