1
Good afternoon I am trying to perform a Get request with Angularjs but I get no response and the only console.log that runs is the last one that is already outside the request;
angular.module("listaTelefonica").controller("listaTelefonicaCtrl", function ($scope, $http) {
$scope.contatos = [];
var carregarContatos = function(){
$http({method:'GET',url: 'http://www.json-generator.com/api/json/get/ccLAsEcOSq?indent=1'}).then(function(response){
console.log("conexão foi realizada")
console.log(response.data);
}).catch(
console.log("falha na conexão")
);
console.log("falha na conexão")
};
console.log("falha na conexão")