简体   繁体   中英

fetch data from databse in angular js using php

I am new in angular js,i want to fetch data from database using php. i try Following code.

          <html>
           <head>
              <script src = "http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>
<script>
   var myApp = angular.module('myApp',[]);
   myApp.controller('studentController', ['$scope','$http', function ($scope,$http) {
                  var url = "ajax.php";
                  $http.get(url).success( function(response) {
                      $scope.students = response;
                      });
               }]);


              </script>
           </head>
           <body>
              <div ng-app = "myApp" ng-controller = "studentController">
                 <table>
                    <tr>
                       <th>Name</th>
                    </tr>

                    <tr ng-repeat = "student in students">
                       <td>{{ student.Name }}</td>
                    </tr>
                 </table>
              </div>
           </body>
        </html>

ajax.php this code give me following output:

[{"Name":"Mahesh","Roll":"122222"},{"Name":"ajay","Roll":"444433"}]

but i am not able to display on front end...Thanks.

<?php
    $con = mysqli_connect("localhost","root","","adworld");
    $res= mysqli_query($con,"SELECT * FROM students");
    $result = array();
    while($row=mysqli_fetch_assoc($res)){
        $result[] = $row;
    }   
    echo json_encode($result);
?>

Working Code :

<!DOCTYPE html>
<html >
<script src= "angular.js"></script>
<body>

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

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

</div>

<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
   $http.get("ajax.php")
   .success(function (response) {$scope.names = response;});
});
</script>

</body>
</html>

ajax.php

<?php
    $conn = new mysqli("localhost","root","","adworld");
    $result = $conn->query("SELECT * FROM students");
    $arr = array();
    while($rs = $result->fetch_assoc()) 
    {
      $arr[] = $rs;
    }

    echo json_encode($arr);
    ?>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM