使用ng-repeat

时间:2016-12-05 18:15:00

标签: angularjs json

我有一个大的json文件,我正在尝试使用AngularJS从中提取文件的名称。如何每年使用ng-repeat提取文件名?这是我在Plunker

中的简单示例
  App.controller('TodoCtrl', function($scope, $http) {
  $http.get('data.json')
       .then(function(res){
          $scope.todos = res.data;                
        });
  });

我不确定如何创建此控制器。

2 个答案:

答案 0 :(得分:0)

您只需通过键值

即可访问项目
authenticateUser

<强> DEMO

答案 1 :(得分:0)

您可以将它们作为(键,值)对进行访问。

<强> HTML

  <ul>
    <li ng-repeat="(year,files) in todos" ng-click="sendData(year,files)">
      {{year}}:{{files}} --- click here
    </li>
  </ul>

查看DEMO