I have this return in JS, and would like to print the messages like this:
Email é Obrigatório!
Limite de Testes é obrigatória!
... and so on. The problem is that in the middle of the return in another array and I could not handle it, so in that case, print like this:
Valor é Obrigatório!
Valor é Obrigatório!
I need to print only the messages.
resultado:
email:{_empty: "Email é Obrigatório!"}
limite_teste:{_empty: "Limite de Testes é obrigatória!"}
limite_usuarios:{_empty: "Limite de Usuários é obrigatório!"}
nome:{_empty: "Nome Completo é obrigatório"}
password:{_empty: "Senha é obrigatória!"}
planos:
Array(2)
0:_joinData:valor:{_empty: "Valor é Obrigatório!"}
1:_joinData:valor:{_empty: "Valor é Obrigatório!"}
username:{_empty: "Usuário é obrigatório!"}
[1]: https://i.stack.imgur.com/2PTXi.png
My Code:
var erro = "";
for(var k in mensagem ){
for(var i in mensagem[k]){
erro = erro + mensagem[k][i] + "<br>";
}
}