ล่าสุดการพัฒนาเว็บบทเรียน
 

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>
ลองตัวเอง»