Hi @kanidani
I was playing around with your example. This template code
let template = `
<table bgcolor="#CCCCCC">
<tr>
<th>BR</th>
<th>Anzahl</th>
</tr>
{{#each response.metaData.cols}}
<tr>
<td>{{Bezeichnung}}</td>
<td>{{ANZAHL}}</td>
</tr>
{{/each}}
</table>`;
would work if the cols array held properties like this;
"metaData": {
"cols": [
{
"Bezeichnung": 12
},
{
"ANZAHL": 4
}
]
},
Example;
Unfortunately, your response appears to have nested arrays and I’m not sure about the syntax for this.
I believe (I could be wrong) … but the {{Bezeichnung}}
and {{ANZAHL}}
won’t work because they are not referencing a property, but instead a value within an array.