I can not copy the result to the variable registroJson
, I've already lost almost a day in this problem:
$(document).ready(function(){
var registroJson = [];
var url = 'xpto';
$.getJSON(url,function(data){
registroJson = data; //copiando para variavel registroJson o resutado 'data'
// já tentei registroJson.push(data) e tabem não funciona
});
console.log(registroJson); //o resultado no console sempre mostra [], array vazio
});