I'm a Noob to AngularJS so not sure if this is possible but i have a local JSON file that i would like to read and display the contents on a web page....
I've seen some example of reading json but all seem to involve running a server... Is it possible to retrieve the data from just a file read?
something like below (which doesnt work)
.controller('View1Ctrl', ['$scope','$http', function($scope, $http) {
$http.get('C:\test.json').success(function (data){
$scope.tables = data;
});
}]);