I am trying to send a request to a php file from one controller in angular and getting the response. I stored the response in a rootScope variable which is initialized in the controller.run() method with 0.
Now I am trying to use the updated rootScope in another controller in order to display the response from the php page. But the rootScope is not getting updated and it is still showing 0.
Here is my code.
The following is the run method where the rootScope is initialized
adminController.run(function ($rootScope) {
$rootScope.n = 0;
});
The following is the code for controller 1 where I am requesting a response from the php page and updating the rootScope variable.
adminController.controller('adminLoginController', function($scope,$rootScope,$http,$window) {
$scope.loginCheck = function(event,user){
var request = $http({
method: "post",
url: "../_/php/loginCheck.php",
headers: { 'Content-Type': 'application/x-www-form-urlencoded' }
});
request.success(function (data) {
$rootScope.n=data;
$rootScope.$apply();
$window.location.href = 'admin.html#admin_home';
});
}
});
Here is the code for my second controller where I am utilizing the rootScope variable. Here the problem comes as the rootScope is not getting updated and displaying me only the 0 with which it is initialized.
adminController.controller('adminHomeController', function($scope,$rootScope,$http,$window) {
$scope.uname=$rootScope.n;
alert($scope.uname);
});
Can some one let me know where I am going wrong.
Put a
$watch
on the variableFor more information, see AngularJS $watch API Reference
Keep in mind that it is not wise to clutter
$rootScope
with data. Persistent data is better kept in a service.Then in your LoginController:
In your HomeController: