溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Angular.JS讀取數(shù)據(jù)庫(kù)數(shù)據(jù)調(diào)用完整實(shí)例

發(fā)布時(shí)間:2020-10-19 10:26:06 來(lái)源:腳本之家 閱讀:183 作者:火紅橘子 欄目:web開發(fā)

本文實(shí)例講述了Angular.JS讀取數(shù)據(jù)庫(kù)數(shù)據(jù)調(diào)用。分享給大家供大家參考,具體如下:

以下是實(shí)例代碼:

<!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 >
<div ng-app="myApp" ng-controller="customersCtrl">
<h4>數(shù)據(jù)統(tǒng)計(jì)</h4>
<table>
 <tr>
  <th>活動(dòng)編號(hào)</th>
  <th>活動(dòng)名稱</th>
  <th>點(diǎn)擊量</th>
  <th>最后訪問時(shí)間<i id="buffer"></i></th>
  <th>所屬欄目</th>
 </tr>
 <tr ng-repeat="x in names">
  <td>{{ x.sid }} </td>   <!--活動(dòng)編號(hào)-->
  <td>{{ x.sname }} </td>  <!--活動(dòng)名稱-->
  <td>{{ x.sclick }} 次</td>  <!--點(diǎn)擊量-->
  <td>{{ x.stime | date:'yyyy-MM-dd HH:mm:ss' }}</td>  <!--最后訪問時(shí)間-->
  <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) {
  $http.get("Customers_MySQL.php")
  .success(function (response) {
      $scope.names = response;
      buffer.style.display = 'none';  //成功調(diào)取數(shù)據(jù)之后
  });
  //成功調(diào)取mysql數(shù)據(jù),將response.records改為response,因?yàn)樗莻€(gè)對(duì)象
});
</script>
</body>
</html>

更多關(guān)于AngularJS相關(guān)內(nèi)容可查看本站專題:《AngularJS指令操作技巧總結(jié)》、《AngularJS入門與進(jìn)階教程》及《AngularJS MVC架構(gòu)總結(jié)》

希望本文所述對(duì)大家AngularJS程序設(shè)計(jì)有所幫助。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI