使用角度ngrepeat中从服务器返回的数据

时间:2013-09-22 09:53:01

标签: php angularjs angularjs-ng-repeat

我一直在尝试使用angular.js的$ http服务从服务器获取数据,然后使用ng-repeat指令在我的模板中使用返回的数据。但问题是所提取的数据根本没有显示,并且ng-repeat指令生成的数字行数除了它应该的行数。我正在使用PHP来呈现数据。这是javascript部分:

    function display($scope, $http){
      $scope.s= "?s=Spice";
      $http({method: "GET", url: "getlistangular.php"+$scope.s}).
       success(function(data){
        alert("success");
        $scope.list= data;
       }).
       error(function(){
        alert("failed");
           });
     }

这是php中的脚本(spname,spprice,imgsrc是mysql'spice'表中的列名):

    $t = $_GET['s'];
    $query= mysql_query("select * from $t");

    echo "[";
    while ($row = mysql_fetch_array($query))
    {
    echo "{img:'".$row[imgsrc]."', name:'".$row[spname]."', price:'".$row[spprice]."'},\n";
    }
    echo "];";

&安培;这是模板部分:

    <table ng-controller="display">

                <tr>
                    <th> </th> <th> Name </th> <th> Price (Rs.) </th>
                </tr>
                <tr ng-repeat="con in list">
                    <td><input type="checkbox" class="regular-checkbox" value={{con.name}}><img src="{{con.img}}"/></td>
                    <td>{{con.name}}</td>
                    <td>{{con.price}}</td>
                </tr>

            </table>

对于这个angular.js来说是新手,所以如果你觉得这是一个愚蠢的问题,我为此道歉。

提前致谢!

2 个答案:

答案 0 :(得分:2)

Javascript应该是这样的:

var app = angular.module('myApp', []);

app.controller('displayCtrl', function($scope, $http) {
   $scope.s= "?s=Spice";
  $http({method: "GET", url: "getlistangular.php"+$scope.s, isArray: true}) //change here
    .success(function(response){
       alert("success");
       $scope.list= response; //change here
    })
    .error(function(){
       alert("failed");
    });
 });

HTML部分:

<table ng-controller="display">

替换为:

<table  ng-controller="displayCtrl">

并且

 <html>

替换为

    <html ng-app="myApp">

请参阅DEMO HERE

答案 1 :(得分:1)

问题基本上在php部分..解决方案是以key:value格式返回一个json数组,而不是使用echo创建它:

    echo "[";
while ($row = mysql_fetch_array($query))
{
echo "{img:'".$row[imgsrc]."', name:'".$row[spname]."', price:'".$row[spprice]."'},\n";
}
echo "];";

应替换为:

    $arr = array();
while ($row = mysql_fetch_array($query))
{
$arr[] = array( 'img' => $row['imgsrc'], 'name' => $row['spname'], 'price' => $row['spprice'] );
}

echo json_encode(array('data' => $arr));