I need to use ng-repeat (in AngularJS) to list all of the elements in an array.
ng-repeat
The complication is that each element of the array will transform to ei
You might want to flatten the data within your controller:
function MyCtrl ($scope) { $scope.myData = [[1,2,3], [4,5,6], [7,8,9]]; $scope.flattened = function () { var flat = []; $scope.myData.forEach(function (item) { flat.concat(item); } return flat; } }
And then in the HTML:
{{item}}