klajd of AEK
4/23/2015 - 10:28 AM

read_json_data_ng.js

App.controller('TodoCtrl', function($scope, $http) {
  $http.get('todos.json')
       .then(function(res){
          $scope.todos = res.data;                
        });
});