Skip to content Skip to sidebar Skip to footer

Angularjs: How To Access Global Variables Outside Of Controller?

I am trying to access a global variable via a normal function, is it possible? I have set some var using $rootScope and I am trying to access this via a callback function. This cal

Solution 1:

Please don't use the $rootScope to define any function - it's really bad practice. Remember that $rootScope is a global variable after all.

You can get the $rootScope via service like this:

<!doctype html><htmllang="en"ng-app="myApp"><head><metacharset="UTF-8"><title>Document</title><scriptsrc="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script><script>var myApp = angular.module('myApp', []);

      myApp.controller('myAppCtrl', ['$scope', 'myService', function ($scope, myService) {

       console.log(myService.getData());
    
}])

        myApp.factory('myService', [ '$rootScope', function ($rootScope) {
    
       return {
        
        getData: function() {
            return $rootScope;
        }
       };
      }])


    </script></head><bodyng-controller="myAppCtrl"></body></html>

$rootScope exists, but it can be used for evil

Scopes in Angular form a hierarchy, prototypically inheriting from a root scope at the top of the tree. Usually this can be ignored, since most views have a controller, and therefore a scope, of their own.

Occasionally there are pieces of data that you want to make global to the whole app. For these, you can inject $rootScope and set values on it like any other scope. Since the scopes inherit from the root scope, these values will be available to the expressions attached to directives like ng-show just like values on your local $scope.

Of course, global state sucks and you should use $rootScope sparingly, like you would (hopefully) use with global variables in any language. In particular, don't use it for code, only data. If you're tempted to put a function on $rootScope, it's almost always better to put it in a service that can be injected where it's needed, and more easily tested.

Conversely, don't create a service whose only purpose in life is to store and return bits of data.

UPDATED ANSWER

A_J, I am not sure what's the scenario of your application. I would need to see more code to give you a better answer, but please take a look at the code below. Maybe it can give you some idea how you can design your code to access $rootScope inside a service.

Press the button "Log me In" and take a look at your console. Working example here (http://jsbin.com/olOyaHa/1/)

<!doctype html><htmllang="en"ng-app="myApp"><head><metacharset="UTF-8"><title>Document</title><scriptsrc="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script><script>var myApp = angular.module('myApp', []);

     myApp.controller('fbLandingCtrl', ['$scope', '$rootScope', 'loginService', function ($scope, $rootScope, loginService) {

    $rootScope.isFBLoggedin = false;
    
    $scope.login = function() {
       console.log('Current login status', $rootScope.isFBLoggedin);

       console.log(loginService.getUserInfo());

       loginService.login(loginService.getUserInfo());

       loginService.updateStatus();
      };

    
     }]);


     myApp.factory('loginService', [ '$rootScope', function ($rootScope) {
    
    return {
        
        login: function() {
            console.log('now I am logged in!');
            return $rootScope.isFBLoggedin = true;
        },

        getUserInfo: function() {
            return {
                username: 'xmen',
                role: 'admin',
                logged: 'false'
            };
        },
        
        updateStatus: function(userInfo){
            $rootScope.isFBLoggedin = true;
            console.log('Current login status', $rootScope.isFBLoggedin);
        }
        };
     }])


    </script></head><bodyng-controller="fbLandingCtrl"><buttonng-click="login()">Log Me In</button></body></html>

Solution 2:

You can access $rootScope.var inside your controller if you added $rootScope as a controller reference:

functionMyCtrl($scope, $rootScope, $routeParams/*, ... */)
{
  /* Controller code and callback code here */
}

It will work as long as your callback is defined inside your controller.

EDIT: after our discussion, here is how to define a function inside your rootScope:

yourApp.run($rootScope/*, ResourceProvider ... */) {
    $rootScope.yourFunction= function () {
        /* The code of you functions */
    }
}

Post a Comment for "Angularjs: How To Access Global Variables Outside Of Controller?"