AngularJS XMLHttpRequest


$http 是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。

读取 JSON 文件

以下是存储在web服务器上的 JSON 文件:

http://www.shouce.ren/try/angularjs/data/Customers_JSON.php

  1. [
  2. {
  3. "Name" : "Alfreds Futterkiste",
  4. "City" : "Berlin",
  5. "Country" : "Germany"
  6. },
  7. {
  8. "Name" : "Berglunds snabbköp",
  9. "City" : "Luleå",
  10. "Country" : "Sweden"
  11. },
  12. {
  13. "Name" : "Centro comercial Moctezuma",
  14. "City" : "México D.F.",
  15. "Country" : "Mexico"
  16. },
  17. {
  18. "Name" : "Ernst Handel",
  19. "City" : "Graz",
  20. "Country" : "Austria"
  21. },
  22. {
  23. "Name" : "FISSA Fabrica Inter. Salchichas S.A.",
  24. "City" : "Madrid",
  25. "Country" : "Spain"
  26. },
  27. {
  28. "Name" : "Galería del gastrónomo",
  29. "City" : "Barcelona",
  30. "Country" : "Spain"
  31. },
  32. {
  33. "Name" : "Island Trading",
  34. "City" : "Cowes",
  35. "Country" : "UK"
  36. },
  37. {
  38. "Name" : "Königlich Essen",
  39. "City" : "Brandenburg",
  40. "Country" : "Germany"
  41. },
  42. {
  43. "Name" : "Laughing Bacchus Wine Cellars",
  44. "City" : "Vancouver",
  45. "Country" : "Canada"
  46. },
  47. {
  48. "Name" : "Magazzini Alimentari Riuniti",
  49. "City" : "Bergamo",
  50. "Country" : "Italy"
  51. },
  52. {
  53. "Name" : "North/South",
  54. "City" : "London",
  55. "Country" : "UK"
  56. },
  57. {
  58. "Name" : "Paris spécialités",
  59. "City" : "Paris",
  60. "Country" : "France"
  61. },
  62. {
  63. "Name" : "Rattlesnake Canyon Grocery",
  64. "City" : "Albuquerque",
  65. "Country" : "USA"
  66. },
  67. {
  68. "Name" : "Simons bistro",
  69. "City" : "København",
  70. "Country" : "Denmark"
  71. },
  72. {
  73. "Name" : "The Big Cheese",
  74. "City" : "Portland",
  75. "Country" : "USA"
  76. },
  77. {
  78. "Name" : "Vaffeljernet",
  79. "City" : "Århus",
  80. "Country" : "Denmark"
  81. },
  82. {
  83. "Name" : "Wolski Zajazd",
  84. "City" : "Warszawa",
  85. "Country" : "Poland"
  86. }
  87. ]

AngularJS $http

AngularJS $http 是一个用于读取web服务器上数据的服务。

$http.get(url) 是用于读取服务器数据的函数。

AngularJS 实例

  1. <div ng-app="myApp" ng-controller="customersCtrl">
  2. <ul>
  3. <li ng-repeat="x in names">{{ x.Name + ', ' + x.Country }}</li>
  4. </ul>
  5. </div>
  6. <script>var app = angular.module('myApp', []);app.controller('customersCtrl', function($scope, $http) {    $http.get("http://www.shouce.ren/try/angularjs/data/Customers_JSON.php")    .success(function(response) {$scope.names = response.records;});});</script>

运行一下 »

应用解析:

AngularJS 应用通过 ng-app 定义。应用在 <div> 中执行。

ng-controller 指令设置了 controller 对象 名。

函数 customersController 是一个标准的 JavaScript 对象构造器

控制器对象有一个属性: $scope.names

$http.get() 从web服务器上读取静态 JSON 数据

服务器数据文件为:  http://www.shouce.ren/try/angularjs/data/Customers_JSON.php

当从服务端载入 JSON 数据时,$scope.names 变为一个数组。


以上代码也可以用于读取数据库数据。