I need to display a table using Angular ng-repeat but I don't know it's keys in advance.
Like, the response of API is Array of Objects
And, each Object has unknown keys
.
In my HTML, I am doing ng-repeat over responseData.data.rows
<table id="customers">
<tr ng-repeat = "x in myCtrl.demoDetails">
</tr>
</table>
But how would I print values in table?