I have to get the data being accumulated in the valore
variable and turn them into an array so that I can get them using HttpRequest
in an HTML page. How do I do this?
// Classe para chamar o JSON.
function json(){
var qtd;
var retorno;
// Resgatar valores.
json.prototype.resgatarValores = function(){
$('#resultado').html('Carregando dados...');
// Estrutura de resultado.
$.getJSON('/webpro/webadm/lncidjson', function(data){
this.qtd = data.usuarios.length - 1;
this.valore = '';
this.label = '';
for (i = 0; i < this.qtd; i++){
if(i == (this.qtd - 1)) {
this.valore += data.usuarios[i].valor;
this.label += data.usuarios[i].descr;
}
else {
this.valore += data.usuarios[i].valor + ',';
this.label += data.usuarios[i].descr + ',';
}
}
$('#valor').html(this.valore);
$('#label').html(this.label);
});
}
}
// Objeto.
var obj = new json();
obj.resgatarValores();