Adding a new parameter on my function this.getMovie and then specify a 
variable works, i don't know if it's correct thought!

app.controller('MovieCtrl', ['$http', '$log', 'tmdb', function($http, $log, 
tmdb){
  this.movie = {};
  this.getMovie = function(id, vari) {
    tmdb.movie(id).then(function(response) {
      console.log(response);
      vari = response.data;
      console.log(vari);
    });
  };
  this.getMovie(504, this.movie);
}]);

-- 
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 https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to