<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>
<style>
table {
position: relative;
}
table,
th,
td {
border: 1px solid grey;
border-collapse: collapse;
padding: 10px 20px;
}
table tr:nth-child(odd) {
background-color: #f1f1f1;
}
table tr:nth-child(even) {
background-color: #ffffff;
}
i {
display: block;
background: url(buffer.gif) no-repeat;
position: absolute;
left: 50%;
margin-left: -16px;
top: 50px;
width: 32px;
height: 32px;
}
</style>
</head>
<body>
<center style="margin-top:100px;">
<div ng-app="myApp" ng-controller="customersCtrl">
<h2>数据统计</h2>
<table>
<tr>
<th>活动编号</th>
<th>活动名称</th>
<th>点击量</th>
<th>最后访问时间<i id="buffer"></i></th>
<th>所属栏目</th>
</tr>
<tr ng-repeat="x in names">
<!--活动编号-->
<td>{{ x.sid }} </td>
<!--活动名称-->
<td>{{ x.sname }} </td>
<!--点击量-->
<td>{{ x.sclick }} 次</td>
<!--最后访问时间-->
<td>{{ x.stime | date:'yyyy-MM-dd HH:mm:ss' }}</td>
<!--所属栏目-->
<td>{{ x.sproject }}</td>
</tr>
</table>
</div>
</center>
<script>
var buffer = document.getElementById("buffer");
buffer.style.display = 'block';
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
//成功调取mysql数据,将response.records改为response,因为它是个对象
$http.get("Customers_MySQL.php")
.success(function(response) {
$scope.names = response;
buffer.style.display = 'none';
});
});
</script>
</body>
</html>
【AngularJS】读取数据库数据调用实例
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1.简单的例子(方法注册) 2前端数据展示 3.页面展示 ps:刚开始学习angularjs,书上讲的方法注册是直...
- 数据驱动 数据驱动是软件设计与开发中不可忽视的内容,开发电子游戏更是如此。电子游戏世界是由逻辑与数据构建的。在开发...
- 前言 需求:要向redis存入mongodb中的数据思路:利用redis和pymongo模块,读取mongo的数据...