AngularJS는 서버에서 데이터를 서비스로 읽을 수 있는 $http 컨트롤을 제공합니다. 서버는 레코드를 가져오기 위해 데이터베이스 호출을 할 수 있습니다. AngularJS에는 JSON 형식의 데이터가 필요합니다. 데이터가 준비되면 $http를 사용하여 다음과 같은 방법으로 서버에서 데이터를 가져올 수 있습니다.
function studentController($scope,$http) { var url="data.txt"; $http.get(url).success( function(response) { $scope.students = response; }); }
여기서는 data.txt에 담긴 학생기록입니다. $http 서비스는 Ajax를 호출하고 해당 학생에게 특정한 속성을 설정합니다. "학생" 모델을 사용하여 HTML 테이블을 그릴 수 있습니다.
예
데이터.txt
testAngularJS.html
<html> <head> <title>Angular JS Includes</title> <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> </head> <body> <h2>AngularJS Sample Application</h2> <div ng-app="" ng-controller="studentController"> <table> <tr> <th>Name</th> <th>Roll No</th> <th>Percentage</th> </tr> <tr ng-repeat="student in students"> <td>{{ student.Name }}</td> <td>{{ student.RollNo }}</td> <td>{{ student.Percentage }}</td> </tr> </table> </div> <script> function studentController($scope,$http) { var url="data.txt"; $http.get(url).success( function(response) { $scope.students = response; }); } </script> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script> </body> </html>
출력
이 예제를 실행하려면 textAngularJS.html, data.txt를 웹 서버에 배포해야 합니다. 서버를 요청하는 URL을 사용하여 웹 브라우저에서 textAngularJS.html을 엽니다. 다음과 같이 결과를 확인하세요.