My data is formatted in a json with the following rows:
{{"0":"94122","1":"94132","2":"94131","3":"94116","4":"94107"}
{"0":4,"1":2,"2":4,"3":2,"4":2}}
Using the code snippet below:
<li ng-repeat="x in table">
{{ x }}
</li>
I am currently displaying the data as follows:
{"0":"94122","1":"94132","2":"94131","3":"94116","4":"94107"}
{"0":4,"1":2,"2":4,"3":2,"4":2}
I want to convert this into a tabular format like so:
<tr ng-repeat="roll in sushi">
<td>{{ roll.name }}</td>
<td>{{ roll.fish }}</td>
<td>{{ roll.tastiness }}</td>
</tr>