populate json content in table using angular6
Clash Royale CLAN TAG #URR8PPP populate json content in table using angular6 I have json to construct table by populating its header and body dynamically. But my following table angular6 code is not populating as expected. Could anyone suggest the problem is in json or table iteration. Expected Output: JSON: this.columns = ["role1", "role2", "role3"]; this.permission = [ { role1: [{ master: { sub1: { read: true, write: true }, sub2: { read: true, write: true } }, support: { sub3: { read: true, write: false } }, admin: { sub4: { read: false, write: false } } }], role2: [{ master: { sub1: { read: true, write: false }, sub2: { read: true, write: false } }, support: { sub3: { read: true, write: true } }, admin: { sub4: { read: false, write: false } } }], role3: [{ master: { sub1: { read: true, write: true }, sub2: { read...