本文實例講述了Angular.JS讀取數據庫數據調用。分享給大家供大家參考,具體如下:
專注于為中小企業(yè)提供成都網站制作、網站建設、外貿網站建設服務,電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)東光免費做網站提供優(yōu)質的服務。我們立足成都,凝聚了一批互聯網行業(yè)人才,有力地推動了上1000+企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網站建設實現規(guī)模擴充和轉變。
以下是實例代碼:
<!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>數據統(tǒng)計</h4> <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) { $http.get("Customers_MySQL.php") .success(function (response) { $scope.names = response; buffer.style.display = 'none'; //成功調取數據之后 }); //成功調取mysql數據,將response.records改為response,因為它是個對象 }); </script> </body> </html>
更多關于AngularJS相關內容可查看本站專題:《AngularJS指令操作技巧總結》、《AngularJS入門與進階教程》及《AngularJS MVC架構總結》
希望本文所述對大家AngularJS程序設計有所幫助。
當前名稱:Angular.JS讀取數據庫數據調用完整實例
本文網址:http://jinyejixie.com/article24/ipijje.html
成都網站建設公司_創(chuàng)新互聯,為您提供網頁設計公司、品牌網站制作、企業(yè)建站、小程序開發(fā)、網站營銷、域名注冊
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯