0
To with a problem, in sending data using ajax, my function always returns that same error: Uncaught Referenceerror: reply is not defined;
Function that passes the data::
function salvaDadosHistorico(username,valorDado,resultado,nunSorteados){
dados = 'username='+username+',valorDado='+valorDado+',resultado='+resultado+',nunSorteados='+nunSorteados;
resp = chamadaAjax(dados,'core/historico-control.php','POST');
return resp;
}
function giving you the error:
function chamadaAjax(dados,rota,type) {
$.ajax({
type: type,
data: dados,
url: rota,
success: function (res)
{
resposta = res;
},
error: function(res)
{
resposta = res;
}
})
return resposta;
}
When it comes to this line
return resposta;
, the variableresposta
does not exist. What is inside AJAX is process after.– Sam