I want to print the data of each translation in my HTML code
I received from my api this format of data :
{"Data":
[
{
"Code":"Hello",
"TraductionsFormat":
[
{
"Code":"Hello",
"Lot":3,
"Description":null,
"Id":1,
"IdLangage":"FR",
"Traduction":"Bonjour"
}
]
}
]
I try to print the data in this code but that don't worked :
<div *ngFor="let traduction of traductionData">
<p>{{traduction.Code}}</p>
<p>{{traduction.TraductionsFormat.IdLangage}}</p>
<p>{{traduction.TraductionsFormat.Traduction}}</p>
</div>