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년 전 | 1784 | ||
| 237 | 부트스트랩 | 8년 전 | 1592 | ||
| 236 | 부트스트랩 | 8년 전 | 1491 | ||
| 235 | 부트스트랩 | 8년 전 | 1766 | ||
| 234 | 부트스트랩 | 8년 전 | 1334 | ||
| 233 | 부트스트랩 | 8년 전 | 2268 | ||
| 232 | 부트스트랩 | 8년 전 | 1367 | ||
| 231 | 부트스트랩 | 8년 전 | 1723 | ||
| 230 | 부트스트랩 | 8년 전 | 2133 | ||
| 229 | 부트스트랩 | 8년 전 | 2843 | ||
| 228 | 부트스트랩 | 8년 전 | 2675 | ||
| 227 | 부트스트랩 | 8년 전 | 1628 | ||
| 226 | 부트스트랩 | 8년 전 | 2483 | ||
| 225 | 부트스트랩 | 8년 전 | 1643 | ||
| 224 | 부트스트랩 | 8년 전 | 1564 | ||
| 223 | 부트스트랩 | 8년 전 | 1406 | ||
| 222 | 부트스트랩 | 8년 전 | 1942 | ||
| 221 | 부트스트랩 | 8년 전 | 1496 | ||
| 220 | 부트스트랩 | 8년 전 | 1649 | ||
| 219 | 부트스트랩 | 8년 전 | 1201 | ||
| 218 | 부트스트랩 | 8년 전 | 1064 | ||
| 217 | 부트스트랩 | 8년 전 | 1451 | ||
| 216 | 부트스트랩 | 8년 전 | 1330 | ||
| 215 | 부트스트랩 | 8년 전 | 1251 | ||
| 214 | 부트스트랩 | 8년 전 | 1245 | ||
| 213 | 부트스트랩 | 8년 전 | 1385 | ||
| 212 | 부트스트랩 | 8년 전 | 1261 | ||
| 211 | 부트스트랩 | 8년 전 | 1578 | ||
| 210 | 부트스트랩 | 8년 전 | 1571 | ||
| 209 | 부트스트랩 | 8년 전 | 1816 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기