Jump to content
Fórum Script Brasil
  • 0

Ler JSON no cliente. Como?


ViaPocket

Question

Help com JSON!!!

Preciso fazer algo simples mas não estou sabendo como.

Isso é o resultado de um recordset que gostaria de ler com JS numa página no cliente.

{"Municipio":[{"id":"<%=(rs.Fields.Item("SisMunCod").Value)%>", "Desc":"<%=(rs.Fields.Item("SisMunDesc").Value)%>", "CodEstado":"<%=(rs.Fields.Item("SisMunCodEstado").Value)%>"]}

Como monto o JS??

Se for com JQuery melhor ainda!

Obrigado!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Bom dia,

Vê se é isso que você precisa

<html>

<head>

<title></title>

<script>

var nomes_json = '[{"nome":"Kellen","idade":26},{"nome":"Tenko","idade":30}]';

var lista = eval( nomes_json );

for( var i = 0; i < lista.length; i++ )

{

alert( 'Nome : ' + lista[ i ].nome + ' Idade : ' + lista[ i ].idade );

}

</script>

</head>

</html>

Link to comment
Share on other sites

  • 0

Opa! Acho que é quase isso sim.

Tenho este AJAX que está funfando:

&lt;script>
function carregaRegiao()
{
var objRegiao = createXMLHTTP(); 
objRegiao.open("post", "Ajax/regioes.asp", true); 
objRegiao.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
objRegiao.onreadystatechange=function(){
if (objRegiao.readyState==3){
document.getElementById("ajaxLoad").style.visibility = "visible"; 
}
else
if (objRegiao.readyState==4){ 
document.all.divRegiao.innerHTML = objRegiao.responseText;
document.getElementById("ajaxLoad").style.visibility = "hidden"; 
}}
objRegiao.send();

}
</script>
E tem este recordset que tb funciona:
<%
if rs.EOF then 

Else
rs.Move start 
Do Until rs.eof
%>
    
{"Municipio":[{"id":"<%=(rs.Fields.Item("SisMunCod").Value)%>", "Desc":"<%=(rs.Fields.Item("SisMunDesc").Value)%>", "CodEstado":"<%=(rs.Fields.Item("SisMunCodEstado").Value)%>"]}

<%
'Add Comma To End Of JSON Line If It Isn't The Last Record      
rs.movenext
If Not rs.eof Then
  Response.Write ","
End If
loop
End if
%>

Minha real necessidade é pegar este recordset pelo AJAX e colocar num script JS (similar ao que você postou).

Mas estou perdido em como fazer isso.

Preciso deste "fio da meada" pra montar as demais páginas que farão uso da mesma metodologia.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...