gpt4 book ai didi

html - 使用 AngularJS 从 MYSQL 服务器获取数据

转载 作者:可可西里 更新时间:2023-11-01 13:50:36 26 4
gpt4 key购买 nike

我有以下代码,取自 W3schools,但现在我需要获取存在于我的“firstSchema”数据库中名为“create_table”的表中的值。请帮助我建议应该对代码进行哪些更改,以便让它在我的 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>

最佳答案

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

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

关于html - 使用 AngularJS 从 MYSQL 服务器获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35195824/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com