Global variables in AngularJS
I have a problem where I'm initialising a variable on the scope in a controller. Then it gets changed in another controller when a user logs in. This variable is used to control things such as the navigation bar and restricts access to parts of the site depending on the type of user, so it is important that it holds its value. The problem with it is that the controller that initialises it, gets called again by angular somehow and then resets the variable back to its initial value.
I assume this is not the correct way of declaring and initialising global variables, well it is not really global, so my question is what is the correct way and is there any good examples around that work with the current version of angular?
In ANgularJS you have got two options for "global" variables to solve angularjs global variable:
use a $rootScope
use a service