I am rendering key:value object array with ng-repeat like this:
-
2021-02-20 11:06
And the JS:
var myApp = angular.module('myApp', []);
var mainCtrl = function($scope){
$scope.records = [
{'name':'key1','value':'val1'},
{'name':'key2', 'value':'val2'}
];
}