JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-controller="MyCtrl">
table
{{data}}
<table>
<tr ng-repeat="(key, value) in data">
{{key}}
{{value}}
<td> {{value.Testing.static.name}} </td>
</tr>
</table>
</div>
JavaScript
var myApp = angular.module('myApp',[]);
function MyCtrl($scope) {
$scope.data = {
"Test": [{
"Testing": {
"static": {
"name": "test01"
},
"testboolean": true
}
}, {
"Testing": {
"static": {
"name": "test02"
},
"secondstatic": "yes"
}
}, {
"Testing": {
"static": {
"name": "test03"
}
}
}]
};
};