Ir para conteúdo
Fórum Script Brasil
  • 0

ajax - retorno


francleirton

Pergunta

Pessoal, estou com uma duvida no seguinte codigo abaixo:

function Grava(linha, QT_CACH_COLH, QT_CACH_PERD, destino){
  var xmlObj = null;
  if(window.XMLHttpRequest){
      xmlObj = new XMLHttpRequest();
  } else if(window.ActiveXObject){
      xmlObj = new ActiveXObject("Microsoft.XMLHTTP");
  } else {
      return;
  }

xmlObj.onreadystatechange = function(){   
 if(xmlObj.readyState == 1){
  //**** USAR PARA ARQUIVOS HTML *****
    abre = "<img src='../Include/assets/ajax-loader.gif' border='0'> Aguarde, Gravando Registro...";
    if(document.getElementById(destino)){
        document.getElementById(destino).style.display = '';
        updateObj(destino,abre);
    }
 }

 if(xmlObj.readyState == 4){
  if (xmlObj.status == 200) { //se não ocorreu nenhum erro
   //**** USAR PARA ARQUIVOS HTML *****
    if(document.getElementById(destino)){
        document.getElementById(destino).style.display = 'none';
    }
    resposta = xmlObj.responseText.split("|");
    
    if(resposta[0].length>0 && resposta[1].value!= 'undefined'){
        document.getElementById(QT_CACH_COLH).value=resposta[0];
        document.getElementById(QT_CACH_PERD).value=resposta[1];
        
        document.getElementById('Gravar_'+linha).style.display='none';
        
        if(QT_CACH_COLH != ''){
            if(document.getElementById(QT_CACH_COLH)){
                document.getElementById(QT_CACH_COLH).focus();
            }
        }
    }else{
        document.getElementById(QT_CACH_COLH).value='';
        document.getElementById(QT_CACH_PERD).value='';
        //document.getElementById(cidade).value='';
        //document.getElementById(uf).value='';
        
        if(QT_CACH_COLH != ''){
            if(document.getElementById(QT_CACH_COLH)){
                document.getElementById(QT_CACH_COLH).value='';
            }
        }    
        document.getElementById(QT_CACH_COLH).focus();
    }
  } 
  else {
            alert("Houve um problema ao obter os dados:\n" + xmlObj.statusText);
        }
}
}
xmlObj.open ('GET', 'pagin.asp', true);
xmlObj.send ('');
}

Pegunta:
1- Qual o retorno na pagina pagin.asp para Quese possa receber os dados nesta linha?  ( resposta = xmlObj.responseText.split("|");       )

Peguei um codigo incompleto e estou com duvida de como faer.

Grato a atençao.

Link para o comentário
Compartilhar em outros sites

3 respostass a esta questão

Posts Recomendados

  • 0

Pessoal, alguém não teria alguma sugestão???

Caso não tenha compreendido minha duvida, podem perguntar que tento esclarecer.

Se também, alguém puder me explicar como faço para fazer um INSERT em uma tabela via AJAX, fico agradecido.

Obrigado.

Pessoal, estou com uma duvida no seguinte codigo abaixo:

function Grava(linha, QT_CACH_COLH, QT_CACH_PERD, destino){

var xmlObj = null;

if(window.XMLHttpRequest){

xmlObj = new XMLHttpRequest();

} else if(window.ActiveXObject){

xmlObj = new ActiveXObject("Microsoft.XMLHTTP");

} else {

return;

}

xmlObj.onreadystatechange = function(){

if(xmlObj.readyState == 1){

//**** USAR PARA ARQUIVOS HTML *****

abre = "<img src='../Include/assets/ajax-loader.gif' border='0'> Aguarde, Gravando Registro...";

if(document.getElementById(destino)){

document.getElementById(destino).style.display = '';

updateObj(destino,abre);

}

}

if(xmlObj.readyState == 4){

if (xmlObj.status == 200) { //se não ocorreu nenhum erro

//**** USAR PARA ARQUIVOS HTML *****

if(document.getElementById(destino)){

document.getElementById(destino).style.display = 'none';

}

resposta = xmlObj.responseText.split("|");

if(resposta[0].length>0 && resposta[1].value!= 'undefined'){

document.getElementById(QT_CACH_COLH).value=resposta[0];

document.getElementById(QT_CACH_PERD).value=resposta[1];

document.getElementById('Gravar_'+linha).style.display='none';

if(QT_CACH_COLH != ''){

if(document.getElementById(QT_CACH_COLH)){

document.getElementById(QT_CACH_COLH).focus();

}

}

}else{

document.getElementById(QT_CACH_COLH).value='';

document.getElementById(QT_CACH_PERD).value='';

//document.getElementById(cidade).value='';

//document.getElementById(uf).value='';

if(QT_CACH_COLH != ''){

if(document.getElementById(QT_CACH_COLH)){

document.getElementById(QT_CACH_COLH).value='';

}

}

document.getElementById(QT_CACH_COLH).focus();

}

}

else {

alert("Houve um problema ao obter os dados:\n" + xmlObj.statusText);

}

}

}

xmlObj.open ('GET', 'pagin.asp', true);

xmlObj.send ('');

}

Pegunta:

1- Qual o retorno na pagina pagin.asp para Quese possa receber os dados nesta linha? ( resposta = xmlObj.responseText.split("|"); )

Peguei um codigo incompleto e estou com duvida de como faer.

Grato a atençao.

Link para o comentário
Compartilhar em outros sites

Participe da discussão

Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.

Visitante
Responder esta pergunta...

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emoticons são permitidos.

×   Seu link foi incorporado automaticamente.   Exibir como um link em vez disso

×   Seu conteúdo anterior foi restaurado.   Limpar Editor

×   Você não pode colar imagens diretamente. Carregar ou inserir imagens do URL.



  • Estatísticas dos Fóruns

    • Tópicos
      152,3k
    • Posts
      652,3k
×
×
  • Criar Novo...