AngularJS 테이블
AngularJS 테이블
ng-repeat 지시어는 테이블을 표시하는 데 적합합니다.
테이블에 데이터 표시
각도가있는 표를 표시하는 것은 매우 간단합니다.
예
<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("customers.php")
.then(function (response) {$scope.names = response.data.records;});
});
</script>
[전체소스]
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<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("customers.php")
.then(function (response) {$scope.names = response.data.records;});
});
</script>
</body>
</html>
ng-repeat 지시어는 테이블을 표시하는 데 적합합니다.
테이블에 데이터 표시
각도가있는 표를 표시하는 것은 매우 간단합니다.
예
<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("customers.php")
.then(function (response) {$scope.names = response.data.records;});
});
</script>
[전체소스]
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<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("customers.php")
.then(function (response) {$scope.names = response.data.records;});
});
</script>
</body>
</html>
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 268 | 부트스트랩 | 7년 전 | 3128 | ||
| 267 | 부트스트랩 | 7년 전 | 2918 | ||
| 266 | 부트스트랩 | 7년 전 | 2904 | ||
| 265 | 부트스트랩 | 7년 전 | 3400 | ||
| 264 | 부트스트랩 | 7년 전 | 3142 | ||
| 263 | 부트스트랩 | 7년 전 | 3216 | ||
| 262 | 부트스트랩 | 8년 전 | 2716 | ||
| 261 | 부트스트랩 | 8년 전 | 4834 | ||
| 260 | 부트스트랩 | 8년 전 | 3209 | ||
| 259 | 부트스트랩 | 8년 전 | 2755 | ||
| 258 | 부트스트랩 | 8년 전 | 2779 | ||
| 257 | 부트스트랩 | 8년 전 | 2803 | ||
| 256 | 부트스트랩 | 8년 전 | 3294 | ||
| 255 | 부트스트랩 | 8년 전 | 3484 | ||
| 254 | 부트스트랩 | 8년 전 | 3223 | ||
| 253 | 부트스트랩 | 8년 전 | 4098 | ||
| 252 | 부트스트랩 | 8년 전 | 2882 | ||
| 251 | 부트스트랩 | 8년 전 | 2606 | ||
| 250 | 부트스트랩 | 8년 전 | 2711 | ||
| 249 | 부트스트랩 | 8년 전 | 2419 | ||
| 248 | 부트스트랩 | 8년 전 | 1966 | ||
| 247 | 부트스트랩 | 8년 전 | 1724 | ||
| 246 | 부트스트랩 | 8년 전 | 1996 | ||
| 245 | 부트스트랩 | 8년 전 | 1519 | ||
| 244 | 부트스트랩 | 8년 전 | 2133 | ||
| 243 | 부트스트랩 | 8년 전 | 1887 | ||
| 242 | 부트스트랩 | 8년 전 | 1774 | ||
| 241 | 부트스트랩 | 8년 전 | 1164 | ||
| 240 | 부트스트랩 | 8년 전 | 1613 | ||
| 239 | 부트스트랩 | 8년 전 | 1646 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기