I'm having a problem when I make a GET pro server request. My factory always returns an empty object, when it should not.
Then my server (localhost:8080/av1/listarCarroEstoque)
whenever requested returns me the following JSON:
[
{
"id": 0,
"chassi": "123455",
"montadora": "ford",
"modelo": "alto",
"tipo": "HATCH_MEDIO_ESPORTIVO",
"cor": "ROSA",
"motorizacao": 2500,
"preco": 599
}
]
My file ListarCarroFactory.js
:
app.factory('ListarCarroResource', ['$http', function($http) {
return {
listar: function() {
var dados = {};
$http.get('/av1/ListarCarroEstoque').
success(function(data) {
dados = data;
}).
error(function(error) {
dados = error;
});
return dados;
};
}
}]);
My file ListarCarro.js
:
app.controller('ListarVeiculo', function($scope, ListarCarroResource) {
$scope.opcoes = ['carro', 'moto'];
$scope.veiculoSelecionado = false;
$scope.listarVeiculos = function() {
if ($scope.veiculo == $scope.opcoes[0]) {
console.log( (ListarCarroResource.listar()) );
$scope.veiculoSelecionado = true;
} else {
$scope.veiculoSelecionado = true;
}
};
});
And my Main.js
:
var app = angular.module('loja', ['ngResource']);