When my web application uploads a .mes file, it retrieves data and manipulates it to insert into an Object. Initially, the object is empty, but after uploading the file, the data appears.
I am trying to display the 'date' obtained from the .mes file using this code:
Production date : {{ jsonToDisplay[0]['Date/Heure']['Date'] }}
In the end, jsonToDiplay contains a variety of data and never follows the same "model", so I cannot create a standard template for it. Additionally, I have experimented with async methods without success; at initialization, jsonToDisplay is set to an empty array.