天天看點

AngularJS $http 讀取web伺服器上資料

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<title></title>

<link rel="stylesheet" href="">

</head>

<body>

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

<ul>

<li ng-repeat="x in names">

{{x.Name + ',' + x.Country}}

</li>

</ul>

</div>

</body>

<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>

<script>

var app = angular.module("myApp",[]);

app.controller("siteCtrl",function($scope,$http){

$http.get("sites.php").success(function(response){

$scope.names = response.sites;

});

</script>

</html>

sites.php内容如下:

{

    "sites": [

        {

            "Name": "菜鳥教程",

            "Url": "www.runoob.com",

            "Country": "CN"

        },

            "Name": "Google",

            "Url": "www.google.com",

            "Country": "USA"

            "Name": "Facebook",

            "Url": "www.facebook.com",

            "Name": "微網誌",

            "Url": "www.weibo.com",

        }

    ]

}

本文轉自  素顔豬  51CTO部落格,原文連結:http://blog.51cto.com/suyanzhu/1895328

繼續閱讀