-
[AngularJS] 6. Http - Angular JS 강좌Web/AngularJS 2015. 6. 12. 14:18
AngularJS AJAX - $http
$http는 원격 서버에서부터 데이터를 읽기위한 AngularJS 서비스입니다.
1. Providing Data
아래 데이터는 웹 서버에서 제공되는 데이터입니다:
http://www.w3schools.com/angular/customers.php
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889{"records": [{"Name" : "Alfreds Futterkiste","City" : "Berlin","Country" : "Germany"},{"Name" : "Berglunds snabbköp","City" : "Luleå","Country" : "Sweden"},{"Name" : "Centro comercial Moctezuma","City" : "México D.F.","Country" : "Mexico"},{"Name" : "Ernst Handel","City" : "Graz","Country" : "Austria"},{"Name" : "FISSA Fabrica Inter. Salchichas S.A.","City" : "Madrid","Country" : "Spain"},{"Name" : "Galería del gastrónomo","City" : "Barcelona","Country" : "Spain"},{"Name" : "Island Trading","City" : "Cowes","Country" : "UK"},{"Name" : "Königlich Essen","City" : "Brandenburg","Country" : "Germany"},{"Name" : "Laughing Bacchus Wine Cellars","City" : "Vancouver","Country" : "Canada"},{"Name" : "Magazzini Alimentari Riuniti","City" : "Bergamo","Country" : "Italy"},{"Name" : "North/South","City" : "London","Country" : "UK"},{"Name" : "Paris spécialités","City" : "Paris","Country" : "France"},{"Name" : "Rattlesnake Canyon Grocery","City" : "Albuquerque","Country" : "USA"},{"Name" : "Simons bistro","City" : "København","Country" : "Denmark"},{"Name" : "The Big Cheese","City" : "Portland","Country" : "USA"},{"Name" : "Vaffeljernet","City" : "Århus","Country" : "Denmark"},{"Name" : "Wolski Zajazd","City" : "Warszawa","Country" : "Poland"}]}cs 2. AngularJS $http
AngularJS $http 는 웹 서버로부터 데이터를 읽기 위한 핵심 서비스 입니다.
$http.get(url)은 서버 데이터를 읽기 위해 사용되는 함수입니다.
1234567891011121314151617181920212223242526<!DOCTYPE html><html><script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script><body><div ng-app="myApp" ng-controller="customersCtrl"><ul><li ng-repeat="x in names">{{ x.Name + ', ' + x.Country }}</li></ul></div><script>var app = angular.module('myApp', []);app.controller('customersCtrl', function($scope, $http) {$http.get("http://www.w3schools.com/angular/customers.php").success(function (response) {$scope.names = response.records;});});</script></body></html>cs 해설:
AngularJS 어플리케이션은 ng-app에 의해 정의됩니다. 어플리케이션은 <div> 태그 내부에서 실행됩니다.
ng-controller 지시어는 제어 객체를 말합니다.
customersCtrl 함수는 표준 자바 스크립트 객체 생성자 입니다.
AngularJS는 $scope와 $http 객체와 함께 customersCtrl을 적용할 것 입니다.
$scope는 어플리케이션 객체입니다.
$http는 외부 데이터를 요청하기 위한 XMLHttpRequest 객체입니다.
$http.get()은 위 주소로부터 JSON 데이터를 읽습니다.
성공한다면, 제어기는 서버로부터 JSON 데이터를 범위 내의 속성을 생성합니다.
* 이 강좌는 w3schools를 통해서 작성했습니다
'Web > AngularJS' 카테고리의 다른 글
[AngularJS] 9. HTML DOM - Angular JS 강좌 (0) 2015.06.12 [AngularJS] 8. SQL - Angular JS 강좌 (0) 2015.06.12 [AngularJS] 7. Table - Angular JS 강좌 (0) 2015.06.12 [AngularJS] 5. 필터(filter) - Angular JS 강좌 (0) 2015.06.12 [AngularJS] 4. 제어(controller) - Angular JS 강좌 (0) 2015.06.12 [AngularJS] 3. 지시어(directives) - Angular JS 강좌 (0) 2015.06.12