I am working with a single array item that contains complex JSON objects, and I am tasked with accessing these objects using ng-repeat in AngularJS. I have created a fiddle for reference.
If anyone has any solutions, I am open to suggestions.
The specific fields I need from the JSON are:
reputation
profile_image
last_edit_date
question_id
<div ng-app ng-controller="MyCtrl">
<ul>
<li ng-repeat="(reputation, link) in items.owner">{{reputation}}: {{link}}</li>
</ul>
<div ng-repeat="perhaps some other items could be collected in this div">
</div>
</div>