I'm very new to both web development and AngularJS. I am trying to write a web page that will automatically update its info based on JSon files sitting on my server. I can get the json data but I can't seem to parse the data coming in. I validated the json data just to make sure I was writing it correctly, but whenever I display it on the site is just displays as a single string. I am not able to access the individual members. My factory and controller are below. Any help would be greatly appreciated!!
var MyController = function($scope, $log, MyFactory) {
$scope.notes =[];
function init() {
MyFactory.getNotes()
.success(function(notes){
$scope.notes = JSON.parse(notes);
})
.error(function(data, status, headers, config) {
$log.log(data.error + ' ' + status);
});
}
init();
angular.module('MyApp')
.controller('MyController', MyController);
};
And the factory:
var MyFactory = function($http) {
var factory = {};
factory.getNotes = function() {
return $http.get('/ci/data.json');
};
return factory;
};
angular.module('MyApp').factory('MyFactory',
MyFactory);
I admit the code and question is crude but I've just started. Any additional help on architecture and style would be appreciated as well! Thanks in advance!
You don't need to parse the response as json. If the sourcefile is giving you valid json, angular knows its json.
In your controller, try to console.log($scope.notes)
. If using google chrome, you get the json
results pretty printed in the console you know your factory
is working.
Use an angular forEach
to iterate through the result to do something with it.
angular.forEach($scope.notes, function(note) {
console.log(note);
});
You can use angular.fromJson(jsondata)
to parse http result.
Previously i was getting invalid json data from http response, some "\
characters were there in the json data so i parsed using this and it worked for me, it removed all those invalid characters from my json data.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With