I am developing flask app. I made one table which will populate with JSON data. For Front end I am using Angularjs and for back-end I am using flask. But I am not able to popula
If you are populating your data to items[]
,
//declare an array of items. this will get populated with our ajax call
$scope.items = [];
Then iterate it as ,
<tbody>
<!--repeat this table row for each item in items-->
<tr ng-repeat="task in tasks.items">
<td>{{task.description}}</td>
<td>{{task.done}}</td>
<td>{{task.title}}</td>
<td>{{task.uri}}</td>
</tr>
</tbody>