使用AngularJS从MYSQL Server获取数据

时间:2016-02-04 08:18:40

标签: html angularjs

我有以下代码,取自W3schools,但现在我需要获取我的'firstSchema'数据库中名为'create_table'的表中存在的值。请通过建议对代码进行哪些更改来帮助我,以便让它在我的桌子上显示内容。

    <!DOCTYPE html>
<html >
<style>
table, th , td  {
  border: 1px solid grey;
  border-collapse: collapse;
  padding: 5px;
}
table tr:nth-child(odd) {
  background-color: #f1f1f1;
}
table tr:nth-child(even) {
  background-color: #ffffff;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>

<div ng-app="myApp" ng-controller="customersCtrl">

<table>
  <tr ng-repeat="x in names">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country }}</td>
  </tr>
</table>

</div>

<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
   $http.get("http://www.w3schools.com/angular/customers_mysql.php")
   .then(function (response) {$scope.names = response.data.records;});
});
</script>

</body>
</html>

1 个答案:

答案 0 :(得分:1)

您的代码似乎可以实际显示某些内容,但显然您需要修改ng-repeat以反映您从数据库中获取的数据。我认为您缺少的是应用程序的服务器端方面,您需要用您自己的端点替换对w3schools端点的调用,并在那里您可以查询您的数据库并返回您想要的任何内容.....

$http.get("yourappsomewhere/query_database_in_here.php")
.then(function (response) {$scope.yourdata = response.data;});