$http 是 AngularJS 中的一個核心服務,用于讀取遠端伺服器的資料。
使用格式:
POST 與 GET 簡寫方法格式:
此外還有以下簡寫方法:
$http.get
$http.head
$http.post
$http.put
$http.delete
$http.jsonp
$http.patch
更詳細内容可參見:https://docs.angularjs.org/api/ng/service/$http
以下是存儲在web伺服器上的 JSON 檔案:
{
"sites": [
"Name": "菜鳥教程",
"Url": "www.runoob.com",
"Country": "CN"
},
"Name": "Google",
"Url": "www.google.com",
"Country": "USA"
"Name": "Facebook",
"Url": "www.facebook.com",
"Name": "微網誌",
"Url": "www.weibo.com",
}
]
AngularJS $http 是一個用于讀取web伺服器上資料的服務。
$http.get(url) 是用于讀取伺服器資料的函數。
v1.5 中<code>$http</code> 的 <code>success</code> 和 <code>error</code> 方法已廢棄。使用 <code>then</code> 方法替代。
var app = angular.module('myApp', []);
app.controller('siteCtrl', function($scope, $http) {
$http({
method: 'GET',
url: 'https://www.runoob.com/try/angularjs/data/sites.php'
}).then(function successCallback(response) {
$scope.names = response.data.sites;
}, function errorCallback(response) {
// 請求失敗執行代碼
});
<div ng-app="myApp" ng-controller="siteCtrl">
<ul>
<li ng-repeat="x in names">
{{ x.Name + ', ' + x.Country }}
</li>
</ul>
</div>
<script>
$http.get("https://www.runoob.com/try/angularjs/data/sites.php")
.then(function (response) {$scope.names = response.data.sites;});
</script>
.success(function (response) {$scope.names = response.sites;});
應用解析:
注意:以上代碼的 get 請求是本站的伺服器,你不能直接拷貝到你本地運作,會存在跨域問題,解決辦法就是将 Customers_JSON.php 的資料拷貝到你自己的伺服器上,附:PHP Ajax 跨域問題最佳解決方案。
AngularJS 應用通過 ng-app 定義。應用在 <div> 中執行。
ng-controller 指令設定了 controller
對象 名。
函數 customersController 是一個标準的 JavaScript
對象構造器。
控制器對象有一個屬性: $scope.names。
$http.get() 從web伺服器上讀取靜态 JSON 資料。
伺服器資料檔案為:
https://www.runoob.com/try/angularjs/data/sites.php。
當從服務端載入 JSON 資料時,$scope.names 變為一個數組。
以上代碼也可以用于讀取資料庫資料。