JSFiddle - React, Tailwind, and code Playground
by Rajesh Dixit
HTML
<div ng-app>
<div ng-controller="myCtrl">
<ul ng-repeat="o in d.feed.data">
<li>{{o.id}}</li>
</ul>
</div>
</div>
JavaScript
function myCtrl($scope) {
$scope.d = {
"feed": {
"data": [{
"story": "test story",
"updated_time": "2016-06-05T17:17:49+0000",
"id": "1"
}, {
"message": "jkhkjhkhjlkhk",
"updated_time": "2015-05-08T07:23:14+0000",
"id": "2"
}
],
}
}
}