How to show callback?

0

I have this Javascript and would like to get this callback from another page with JavaScript how can I do this? This callbck is on a server named "callb" and I have an HTML page that is on the server and I want to get this calback from the "callb" file and put it in the HTML page.

json.prototype.resgatarValores = function(callback) { // aqui dás a callback como argumento
  $('#resultado').html('Carregando dados...');

  // Estrutura de resultado.
  $.getJSON('/webpro/webadm/lncidjson', function(data) {
    var valore = data.usuarios.map(function(u) {
      return u.valor;
    });
    var label = data.usuarios.map(function(u) {
      return u.descr;
    });
    // aqui usas a callback, passando o "valor" quando ele tiver chegado do servidor
    callback(valore, label);

  });
}

obj.resgatarValores(function(data, labels) {
  // aqui podes fazer algo com a variável (tipo array) "data" e "lavels" que terá o valor de "valore" e "label" dentro da chamada ajax.
  // Esta callback é corrida quando o ajax/getJSON tiver recebido resposta do servidor
});
    
asked by anonymous 18.03.2015 / 13:59

0 answers