↧
Answer by iulia for How do I parse json array object with Angular.js?
Edit, here is the AngularJS solution. $http.get("your_data").success(function (data) { $scope.users = data.messages; console.log("users" , $scope.users); }); and in HTML <div ng-repeat="user in...
View ArticleHow do I parse json array object with Angular.js?
I am consuming a Yammer RESTful API with AngularJS. I have been able to get the yammer user.json api to work but need guidance consuming and displaying the yammer messages.json api. If anybody could...
View Article