1 Star 1 Fork 1

LeeYa Master / angular学习笔记

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
菜鸟教程实例30读取服务器上的数据.html 712 Bytes
一键复制 编辑 原始数据 按行查看 历史
LeeYa Master 提交于 2021-03-25 17:05 . first commit
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.bootcss.com/angular.js/1.6.3/angular.min.js"></script>
</head>
<body>
<div ng-app="myApp" ng-controller="siteCtrl">
<ul>
<li ng-repeat="x in names">
{{ x.Name + ', ' + x.Country }}
</li>
</ul>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('siteCtrl', function($scope, $http) {
$http({
method: 'GET',
url: 'http://www.runoob.com/try/angularjs/data/sites.php'
}).then(function successCallback(response) {
$scope.names = response.data.sites;
}, function errorCallback(response) {
// 请求失败执行代码
document.write("失败了");
});
});
</script>
</body>
</html>
JavaScript
1
https://gitee.com/leeyamaster/angular-learning-notes.git
git@gitee.com:leeyamaster/angular-learning-notes.git
leeyamaster
angular-learning-notes
angular学习笔记
master

搜索帮助