I wonder if it is necessary to handle JSON to use the two-way databinding in HTML. I managed to read it without the treatment, but I do not know if this is the correct way.
Follow the code:
ngOnInit() {
this.emissor = 'Luis Henrique';
this._http.get<PreparacaoDeMensagem[]>("../assets/db/mensagem.json")
.subscribe(mensagem => {
this.mensagem = mensagem
for (let i=0;i < mensagem.length;i++){
this.adicionarMensagem(this.mensagem[i]);
}
)}