I am with the following doubt, I am doing a freight calculation system the system is getting a json answer in the following pattern.
{"cServico":
[{"Codigo":"40010","Valor":"36,90","PrazoEntrega":"3","ValorSemAdicionais":"36,90","ValorMaoPropria"
:"0,00","ValorAvisoRecebimento":"0,00","ValorValorDeclarado":"0,00","EntregaDomiciliar":"S","EntregaSabado"
:"S","Erro":"0","MsgErro":{}},{"Codigo":"41106","Valor":"17,80","PrazoEntrega":"6","ValorSemAdicionais"
:"17,80","ValorMaoPropria":"0,00","ValorAvisoRecebimento":"0,00","ValorValorDeclarado":"0,00","EntregaDomiciliar"
:"S","EntregaSabado":"N","Erro":"0","MsgErro":{}}
]}
How can I be displaying this data.
$('body').append(data);
With this code it shows the most accurate array of just some data and I can not thank you in advance.