AngularJS AJAX - $http
AngularJS AJAX - $http
$ http 는 원격 서버에서 데이터를 읽는 AngularJS 서비스입니다.
AngularJS $ http
AngularJS $http서비스는 서버에 요청을 보내고 응답을 반환합니다.
예
서버에 간단한 요청을하고 결과를 헤더에 표시하십시오.
<div ng-app="myApp" ng-controller="myCtrl">
<p>Today's welcome message is:</p>
<h1>{{myWelcome}}</h1>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $http) {
$http.get("welcome.htm")
.then(function(response) {
$scope.myWelcome = response.data;
});
});
</script>
[전체소스]
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<p>Today's welcome message is:</p>
<h1>{{myWelcome}}</h1>
</div>
<p>The $http service requests a page on the server, and the response is set as the value of the "myWelcome" variable.</p>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $http) {
$http.get("welcome.htm")
.then(function(response) {
$scope.myWelcome = response.data;
});
});
</script>
</body>
</html>
$ http 는 원격 서버에서 데이터를 읽는 AngularJS 서비스입니다.
AngularJS $ http
AngularJS $http서비스는 서버에 요청을 보내고 응답을 반환합니다.
예
서버에 간단한 요청을하고 결과를 헤더에 표시하십시오.
<div ng-app="myApp" ng-controller="myCtrl">
<p>Today's welcome message is:</p>
<h1>{{myWelcome}}</h1>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $http) {
$http.get("welcome.htm")
.then(function(response) {
$scope.myWelcome = response.data;
});
});
</script>
[전체소스]
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<p>Today's welcome message is:</p>
<h1>{{myWelcome}}</h1>
</div>
<p>The $http service requests a page on the server, and the response is set as the value of the "myWelcome" variable.</p>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $http) {
$http.get("welcome.htm")
.then(function(response) {
$scope.myWelcome = response.data;
});
});
</script>
</body>
</html>
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 238 | 부트스트랩 | 8년 전 | 1777 | ||
| 237 | 부트스트랩 | 8년 전 | 1588 | ||
| 236 | 부트스트랩 | 8년 전 | 1485 | ||
| 235 | 부트스트랩 | 8년 전 | 1757 | ||
| 234 | 부트스트랩 | 8년 전 | 1328 | ||
| 233 | 부트스트랩 | 8년 전 | 2263 | ||
| 232 | 부트스트랩 | 8년 전 | 1361 | ||
| 231 | 부트스트랩 | 8년 전 | 1717 | ||
| 230 | 부트스트랩 | 8년 전 | 2125 | ||
| 229 | 부트스트랩 | 8년 전 | 2835 | ||
| 228 | 부트스트랩 | 8년 전 | 2671 | ||
| 227 | 부트스트랩 | 8년 전 | 1624 | ||
| 226 | 부트스트랩 | 8년 전 | 2479 | ||
| 225 | 부트스트랩 | 8년 전 | 1636 | ||
| 224 | 부트스트랩 | 8년 전 | 1558 | ||
| 223 | 부트스트랩 | 8년 전 | 1403 | ||
| 222 | 부트스트랩 | 8년 전 | 1938 | ||
| 221 | 부트스트랩 | 8년 전 | 1493 | ||
| 220 | 부트스트랩 | 8년 전 | 1646 | ||
| 219 | 부트스트랩 | 8년 전 | 1197 | ||
| 218 | 부트스트랩 | 8년 전 | 1061 | ||
| 217 | 부트스트랩 | 8년 전 | 1445 | ||
| 216 | 부트스트랩 | 8년 전 | 1325 | ||
| 215 | 부트스트랩 | 8년 전 | 1247 | ||
| 214 | 부트스트랩 | 8년 전 | 1239 | ||
| 213 | 부트스트랩 | 8년 전 | 1381 | ||
| 212 | 부트스트랩 | 8년 전 | 1250 | ||
| 211 | 부트스트랩 | 8년 전 | 1567 | ||
| 210 | 부트스트랩 | 8년 전 | 1560 | ||
| 209 | 부트스트랩 | 8년 전 | 1802 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기