I'm working on a flat table, which has a script with several objects, like this:
var plano_basicoUS = {
1: null, // mensal
2: null, // trimestral
3: null, // semestral
4: null, // anual
};
var plano_economicoUS = {
1: null, // mensal
2: null, // trimestral
3: null, // semestral
4: null, // anual
};
I update the values of each via $.get
, like this:
$.get("buscar_valor.php?id=3&periodicidade=monthly", function(resultado){
plano_basicoUS[1] = parseFloat(resultado);
});
$.get("buscar_valor.php?id=3&periodicidade=quarterly", function(resultado){
plano_basicoUS[2] = parseFloat(resultado);
});
$.get("buscar_valor.php?id=3&periodicidade=semiannually", function(resultado){
plano_basicoUS[3] = parseFloat(resultado);
});
$.get("buscar_valor.php?id=3&periodicidade=annually", function(resultado){
plano_basicoUS[4] = parseFloat(resultado);
});
$.get("buscar_valor.php?id=4&periodicidade=monthly", function(resultado){
plano_economicoUS[1] = parseFloat(resultado);
});
$.get("buscar_valor.php?id=4&periodicidade=quarterly", function(resultado){
plano_economicoUS[2] = parseFloat(resultado);
});
$.get("buscar_valor.php?id=4&periodicidade=semiannually", function(resultado){
plano_economicoUS[3] = parseFloat(resultado);
});
$.get("buscar_valor.php?id=4&periodicidade=annually", function(resultado){
plano_economicoUS[4] = parseFloat(resultado);
});
Each query of $.get
returns a value like: 10.00 , through the PHP file.
Since there are several objects, I would like to not have to repeat the gets for each one.
How can I do this dynamically, noting that each $.get
has a different URL? Or sequentially, if that's the case.