최신 웹 개발 튜토리얼
 

AngularJS테이블


NG-반복 지시자는 테이블을 표시하기에 적합합니다.


테이블에 데이터 표시

각도와 테이블을 표시하는 것은 매우 간단합니다 :

AngularJS와 예

<div ng-app="myApp" ng-controller="customersCtrl">

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

</div>

<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
    $http.get("http://www.w3ii.com/angular/customers.php")
    .then(function (response) {$scope.names = response.data.records;});
});
</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 필터와 디스플레이

테이블을 정렬하기 위해, 해 orderBy 필터를 추가 :

AngularJS와 예

<table>
  <tr ng-repeat="x in names | orderBy : 'Country'">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country }}</td>
  </tr>
</table>
»그것을 자신을 시도

대문자 필터와 디스플레이

대문자로 표시하려면 대문자 필터를 추가 :

AngularJS와 예

<table>
  <tr ng-repeat="x in names">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country | uppercase }}</td>
  </tr>
</table>
»그것을 자신을 시도

표 지수 ($ 지수)를 표시

테이블 인덱스를 표시하려면 추가 할 <TD> $ 지수 :

AngularJS와 예

<table>
  <tr ng-repeat="x in names">
    <td>{{ $index + 1 }}</td>
    <td>{{ x.Name }}</td>
    <td>{{ x.Country }}</td>
  </tr>
</table>
»그것을 자신을 시도

도 및 $ 홀수 $를 사용하여

AngularJS와 예

<table>
<tr ng-repeat="x in names">
<td ng-if="$odd" style="background-color:#f1f1f1">{{ x.Name }}</td>
<td ng-if="$even">{{ x.Name }}</td>
<td ng-if="$odd" style="background-color:#f1f1f1">{{ x.Country }}</td>
<td ng-if="$even">{{ x.Country }}</td>
</tr>
</table>
»그것을 자신을 시도