AngularJS 擷取JSON資料

來源:互聯網
上載者:User
一、使用$http 我們可以使用內建的 $http服務直接同外部進行通訊。 $http服務只是簡單的封裝了瀏覽器原生的XMLHttpRequest對象。 $http服務是 只能接受一個參數的函數,這個參數是一個對象, 包含了用來產生HTTP請求的配置內容這個函數返回一個promise對象,具有success和error兩個方法。
這兩個方法最基本的使用情境如下:
$http({    method: 'GET',    url: '/api/users.json'}).success(function(data,status,headers,config){    //當相應準備就緒時調用}).error(function(data,status,headers,config){    //當響應以錯誤狀態返回時調用});
二、AngularJS擷取JSON資料執行個體代碼

1、data.json:

[  {    "Name":"Mahesh Parashar",    "RollNo":101,    "Percentage":"80%"  },  {    "Name":"Dinkar Kad",    "RollNo":201,    "Percentage":"70%"  },  {    "Name":"Robert",    "RollNo":191,    "Percentage":"75%"  },  {    "Name":"Julian Joe",    "RollNo":111,    "Percentage":"77%"  }]

2、index.html:

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>angular_learn</title>    <script src="js/angular-1.3.0.js"></script></head><body>    <div class="dataList" ng-app="myApp" ng-controller="myController">        <ul>            <!--在讀取資料的地區添加ng-repeat-->            <li ng-repeat="student in students">                <span>{{student.Name}}</span>                <span>{{student.RollNo}}</span>                <span>{{student.Percentage}}</span>            </li>        </ul>    </div>    <script src="js/angular-1.3.0.js"></script>    <script>        var myApp = angular.module("myApp",[]);        myApp.controller("myController",function ($scope, $http) {           var dataUrl = "json/data.json";           //擷取資料           $http.get(dataUrl).success(function (data) {               $scope.students = data;           }).error(function () {               alert("出錯");           });        });    </script></body></html>
三、方法總結

1、 配置對應的控制器,將$scope、$http服務注入改控制器中;
2、使用$http.get(),把將要讀取的資料檔案的url寫入;
3、使用回呼函數,成功時,將所得的data賦給$scope範圍下的變數products。
4、由前台使用ng-repeat指令進行遍曆逐一取出資料

部分內容轉載自:面具哥布林的部落格

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.