我要在以下数据上使用ng-repeat:

{"data":[{"id":1,"namn":"Bryan","efternamn":"Karlsson"},{"id":2,"namn":"Kalle","efternamn":"Kula"},{"id":3,"namn":"Fisk","efternamn":"Fisksson"},{"id":4,"namn":"Daniel","efternamn":"Fisksson"}]}


我试图像这样使用它:

<div ng-controller="Test">
<tr ng-repeat="namn in test">
    <td>{{namn}}</td>
</tr>
</div>


我不知道为什么。是否由于JSON字符串中的“数据”?

这是我的控制器:

as.controller('Test', function($scope, $http, $rootScope)
{
    $http.get($rootScope.appUrl + '/nao/test/test')
        .success(function(data, status, headers, config) {
            $scope.test = data;
    });
});

最佳答案

<div ng-controller="Test">
  <tr ng-repeat="record in test.data">
    <td>{{record.namn}}</td>
  </tr>
</div>

10-08 18:28