AngularJS Ajax 예제에 대한 자세한 설명

怪我咯
풀어 주다: 2017-06-27 11:51:19
원래의
1331명이 탐색했습니다.

이 글은 주로 AngularJS Ajax에 대한 지식을 설명합니다. AngularJS를 배우는 친구들이 참고할 수 있도록 자세한 정보와 코드 예제가 제공됩니다.

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 테이블을 그릴 수 있습니다.

Example

data.txt

[
{
"Name" : "Mahesh Parashar",
"RollNo" : 101,
"Percentage" : "80%"
},
{
"Name" : "Dinkar Kad",
"RollNo" : 201,
"Percentage" : "70%"
},
{
"Name" : "Robert",
"RollNo" : 191,
"Percentage" : "75%"
},
{
"Name" : "Julian Joe",
"RollNo" : 111,
"Percentage" : "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>
<p 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>
</p>
<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>
로그인 후 복사

Output

이 예제를 실행하려면 textAngularJS.html, data.txt를 웹 서버에 배포해야 합니다. 서버를 요청하는 URL을 사용하여 웹 브라우저에서 textAngularJS.html을 엽니다. 다음과 같이 결과를 확인하세요.

위 내용은 AngularJS Ajax 예제에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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