need to store the token in a constant, is this possible?

app.js
.run(function($http){
        
       var Token = 
$http.get('http://localhost/Project/Project Web/master/public/api/v1/t' )
                .success(function( data) {
                    console.log(data);
                });
                return Token;
         
    });


contoller.js
.controller("LoginController", function($scope ) {
  
$scope.varTest = '';
 Token().success(function(data){
    $scope.varTest = data;
  });

Does not work.
CONSTANT = $scope.varTest;
 
})


Em domingo, 15 de junho de 2014 12h45min31s UTC-3, Martin Alix escreveu:
>
> You cannot do that. The success function is called asynchronously long 
> after the dataHere line has been reached.
> If you had a Plunkr to demonstrate what you are trying to do, it might be 
> easier to explain how to properly use a promise inside a closure to achieve 
> your goal...

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to