AngularJS AJAX - JSON > 퍼블리싱강좌

퍼블리싱강좌

AngularJS AJAX - JSON 정보

AngularJS AngularJS AJAX - JSON

본문

AngularJS AJAX - JSON
 
응답에서 얻은 데이터는 JSON 형식이어야합니다.

JSON은 데이터를 전송하는 좋은 방법이며 AngularJS 또는 다른 JavaScript 내에서 사용하기 쉽습니다.

예 : 서버에 15 명의 고객을 포함하는 JSON 객체를 반환하는 파일이 있습니다.이 객체는 모두 호출 된 배열에 래핑됩니다 records.


ng-repeat지시어는 배열을 통해 반복에 적합합니다 :

<div ng-app="myApp" ng-controller="customersCtrl">

<ul>
  <li ng-repeat="x in myData">
    {{ x.Name + ', ' + x.Country }}
  </li>
</ul>

</div>

<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
    $http.get("customers.php").then(function(response) {
        $scope.myData = response.data.records;
    });
});
</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="customersCtrl">

<ul>
  <li ng-repeat="x in myData">
    {{ x.Name + ', ' + x.Country }}
  </li>
</ul>

</div>

<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
  $http.get("customers.php").then(function (response) {
      $scope.myData = response.data.records;
  });
});
</script>

</body>
</html>
추천
0

댓글 0개

전체 283
퍼블리싱강좌 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT