使用 Angular JS 从 PHP 服务器 运行 MySQL 获取数据时出错

Error Fetching Data From a PHP Server Running MySQL with Angular JS

当我的 Angular 应用程序调用我的 php 文件时,我收到 [$http:baddata] 错误。 我不确定错误的确切触发位置,但我相信这是构建 json 对象的问题!我附上了所有相关代码。任何帮助都会很棒。提前致谢:)

Angular 文档显示了这个

这是 PHP 文件,它连接到我的数据库并尝试 return 一个 JSON 格式化字符串返回到调用文件

<?php 
echo '<script>console.log("Inside php file!")</script>';
header("Access-Control-Allow-Origin: *");
header("Content-Type: application/json; charset=UTF-8");

require_once('mysqli_connect.php');

$query = "SELECT rideid, destination, price, capacity, userid, origin, departDate, vehicle FROM rides";

$result = @mysqli_query($dbc, $query);

$outp = "";
while($rs = $result->fetch_array(MYSQLI_ASSOC)) {
     if ($outp != "") {$outp .= ",";}
    $outp .= '{"Origin":"'  . $rs["origin"] . '",';
    $outp .= '"Destination":"'   . $rs["destination"]        . '",';
    $outp .= '"Price":"'. $rs["price"]     . '"}';
    $outp .= '"Capacity":"'. $rs["capacity"]     . '"}';
}

$outp ='{"records":['.$outp.']}';
//echo '<script>console.log(JSON.stringify('.$outp.'))</script>';
$conn->close();

echo($outp);

这是 Angular 应用向 PHP 文件发出请求

<html>
<head>
    <!-- Include Angular -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.6/angular.min.js"></script>
</head>
<body>

<!-- Ride Table -->
     <div ng-app = "rideAppTest" ng-controller= "rideCtrlTest">
        <table>
          <tr ng-repeat = "x in names">
            <td>{{x.Origin}}</td>
            <td>{{x.Destination}}</td>
            <td>{{x.Price}}</td>
            <td>{{x.Capacity}}</td>
          </tr>
        </table>
     </div>
<!-- End Ride Table -->

<!--Ride Table Script-->
<script>
  var app = angular.module('rideAppTest', []);
  app.controller('rideCtrlTest', function($scope, $http) {
    $http.get("angularFilter.php")
    .then(
      function (response) {
        $scope.names = response.data.records;
      },
      function(data){
        console.log("Error!" + data);
      }

        );
});
</script>
</body>
</html>

不要按照你现在的方式构造 JSON,首先收集数组或对象中的所有内容,然后再执行 echo json_encode($result);

像这样:

$outp = [];
while($rs = $result->fetch_array(MYSQLI_ASSOC)) {
    $outp[] = $rs;
}
echo json_encode(["records" => $outp]);

感谢@Madhav 的帮助。这就是最终对我有用的:)

while($rs = mysqli_fetch_array($result)) {
        $myArray[] = array(
            'Origin' => $rs["origin"],
            'Destination' => $rs["origin"],
            'Price' => $rs["price"],
            'Capacity' => $rs["capacity"]

        );
    }
    echo json_encode(["records" => $myArray]);