> 웹 프론트엔드 > JS 튜토리얼 > AngularJS_AngularJS에서 AJAX를 사용하는 방법

AngularJS_AngularJS에서 AJAX를 사용하는 방법

WBOY
풀어 주다: 2016-05-16 15:54:36
원래의
1322명이 탐색했습니다.

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

코드 복사 코드는 다음과 같습니다.
[
{
"이름": "Mahesh Parashar",
"롤번호" : 101,
"백분율" : "80%"
},
{
"이름": "Dinkar Kad",
"롤번호" : 201,
"백분율" : "70%"
},
{
"이름" : "로버트",
"롤번호" : 191,
"백분율" : "75%"
},
{
"이름" : "줄리안 조",
"롤번호" : 111,
"백분율" : "77%"
}
]

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을 엽니다. 다음과 같이 결과를 확인하세요.

2015617102629588.jpg (560×399)

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿