이 글은 주로 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!