I was woundering how i can access JSON that has dynamic names:
AngularJS http-get:
.then(function (response) {
$scope.GTMcontainersAccount = response.data;
console.log($scope.GTMcontainersAccount);
Response JSON:
{
"Account2": [{
"accountId": "*******",
"containerId": "*******",
"name": "Container23"
}, {
"accountId": "*******",
"containerId": "*******",
"name": "Container2"
}],
"Account 1": [{
"accountId": "*******",
"containerId": "*******",
"name": "Container1"
}]
}
My goal here is to use ng-repeat in a table to show like this:
AccountName | AccountId | containerId | name
Account2 | ******* | ******* | Container23
Account2 | ******* | ******* | Container2
Account1 | ******* | ******* | Container1
How can use the controller to output something like this table?