1
controllerPrincipalService.getResultado(id).then(function(dados)
{
// limpando o retorno
var p = data.search("{")-1;
var res = data.substring(76);
var f = res.search('<');
dados = data.substring(p, p+f);
resultado = JSON.parse(dados);
});
function pegaResultado(resultado){
///trabalhar com o resultado do service a cima.
console.log(resultado);
}
How can I work with the result of my service above in a separate function ? Service is bringing a json vi $http.get
It is also possible to pass the result as a parameter to the function
pegaResultado
, to avoid the use of the global variable and also possible conflicts.– Cahe
not scroll.. of null.
– LucasMoura
@Lucasmoura, he gets to enter the then ? puts a break point inside the then and see if it hangs there, at first it is to focus. Check if the place you are calling the pegaResultado is calling before the answer ajax.
– Roger Barretto