4
Code Component.ts
delete(i: number) {
this.formConcluido = false;
this.formConcluidoErro = false;
this.cidadeDeletar = this.cidades[i];
this.cidadeDeletarId = this.cidadeDeletar.Id;
this.cadastroCidadeService
.DeleteCidade(this.cidadeDeletarId)
.subscribe(res => {
console.log('success', res);
this.resposta = "Cidade Deletada com Sucesso";
this.formConcluido = true;
this.ngOnInit();
},
error => {
console.log('error', error);
this.resp = error.Mensagem;
this.formConcluidoErro = true;
console.log(error.Mensagem);
});
}
error => {
console.log('error', error);
this.resp = error.Mensagem;
this.formConcluidoErro = true;
console.log(error.Mensagem);
});
console.log(error. Message); (is coming - Undefined)
console.log('error', error); (is coming with the values.)
How can I access the Message field, to return to the user.?
/* --------------------------------------------------------------------- */
REPLY:
error => {
console.log('error', error);
this.resp = error.error.Mensagem;
this.formConcluidoErro = true;
console.log(error.Mensagem);
}