I am new using AngularJS and I am having an issue parsing a json response. This is the HTML code I am using:
$http.get will parse the json for you. You do not need to parse it yourself.
$scope.cars = data.allCars;
Just parse your data like that
function (response,httpStatus) { alert('response' + angular.toJson(response)); }
It is built-in feature of angularjs.
angularjs