ホームページ > 記事 > ウェブフロントエンド > AngularJS の基礎知識メモ table_AngularJS
表形式のデータは本質的に反復的なことがよくあります。 ng-repeat ディレクティブを使用すると、テーブルを簡単に描画できます。次の例は、ng-repeat ディレクティブを使用してテーブルを描画する方法を示しています。
<table> <tr> <th>Name</th> <th>Marks</th> </tr> <tr ng-repeat="subject in student.subjects"> <td>{{ subject.name }}</td> <td>{{ subject.marks }}</td> </tr> </table>
次のように、CSS スタイルを使用してテーブルのスタイルを設定できます:
<style> table, th , td { border: 1px solid grey; border-collapse: collapse; padding: 5px; } table tr:nth-child(odd) { background-color: #f2f2f2; } table tr:nth-child(even) { background-color: #ffffff; } </style>
例
次の例では、上記のすべての手順を示します。
testAngularJS.html
Angular JS Table AngularJS Sample Application
<script> function studentController($scope) { $scope.student = { firstName: "Mahesh", lastName: "Parashar", fees:500, subjects:[ {name:'Physics',marks:70}, {name:'Chemistry',marks:80}, {name:'Math',marks:65}, {name:'English',marks:75}, {name:'Hindi',marks:67} ], fullName: function() { var studentObject; studentObject = $scope.student; return studentObject.firstName + " " + studentObject.lastName; } }; } </script>
Enter first name: Enter last name: Name: {{student.fullName()}} Subject: <table> <tr> <th>Name</th> <th>Marks</th> </tr> <tr ng-repeat="subject in student.subjects"> <td>{{ subject.name }}</td> <td>{{ subject.marks }}</td> </tr> </table>
以上がこの記事の全内容です。皆さんに気に入っていただければ幸いです。