AngularJS $http 读取web服务器上数据

前端之家收集整理的这篇文章主要介绍了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",

"Country": "CN"

}

]

}

猜你在找的Angularjs相关文章