I'm writing a couple of functions calling each other in js and I found a unexpected (by me) behaviour in the order of execution.
<script type="text/javascript">
function rellenarProveedores() {
var dProveedores = document.getElementById('Proveedor');
var proveedorActual = document.getElementById('proveedorActual').value;
while (dProveedores.options.length > 0) {
dProveedores.remove(0);
}
var opt = document.createElement('option');
opt.text = 'SELECCIONAR PROVEEDOR';
opt.value = '';
dProveedores.appendChild(opt);
var url = '/Incidencias/ObtenerProveedores';
var array = lecturaBD(url);
alert('LECTURA OBTENIDA: '+array);
for (var i = 0; i < array.length; i++) {
var opt = document.createElement('option');
var obj = array[i];
opt.text = obj.Nombre;
opt.value = obj.ProveedorID;
if (obj.ProveedorID == proveedorActual) {
opt.selected = true;
}
dProveedores.appendChild(opt);
}
}
function lecturaBD(param) {
var enviarData;
var salida;
$.ajax({
url: param,
type: 'POST',
contentType: 'application/json;',
data: enviarData,
success: function (data) {
alert('LECTURA BD: '+data);
salida = data;
},
error: function (data) { alert('Error'); }
});
return salida;
}
window.onload = function () { rellenarProveedores() };
</script>
According to the calls I make, I was expecting to see:
alert('LECTURA BD: '+data);
alert('LECTURA OBTENIDA: '+array);
However, the order is completely the oposite and it causes a failure in my result. Is there any logical reason for this?
As an extra information, I am using it in .net MVC and Chrome.
Ajax is asynchronous and will not execute immediately. It will wait for the request on
/Incidencias/ObtenerProveedores
to complete before executing. That's why yourLECTURA OBTENIDA
alerts first. TheLECTURA BD
was still waiting at that time.You should put everything you need after the Ajax on a callback: