この記事では、主に 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 を Web サーバーにデプロイする必要があります。 URL を使用して Web ブラウザで textAngularJS.html を開き、サーバーをリクエストします。結果は次のとおりです:
以上がAngularJS Ajax サンプルの詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。