Posts by Artur Veiga • 16 points
2 posts
-
0
votes2
answers1753
viewsA: global variable Angularjs
Take a look at ngResource, an example I did on my service. var services = angular.module('ProcessoService', ['ngResource']); services.factory('ProcessosFactory', function($resource,apiUrl){ var…
-
0
votes3
answers657
viewsA: Display values with angular
Dude, I tried to use that there $http.get('/estados').success(function(retorno) { $scope.ufs = retorno.ufs; console.log(retorno); }); Take a look at ngResource, an example I did on my service. var…