AngularJS Ajax詳解及範例程式碼_AngularJS

來源:互聯網
上載者:User

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 表格。

例子

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><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在Web瀏覽器中開啟textAngularJS.html請求伺服器。看到結果如下:

以上就是AngularJS Ajax的基礎資料整理,後續繼續整理相關資料,謝謝大家對本站的支援!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.