Вопрос

I want to assign some data to a global variable (may be $rootscope) which gets initialized at pageload. And then I want to access that data from all the controllers. How would I do that?

// Edit : I tried following and it works as expected....

function Ctrl1($rootScope) {
    $rootScope.value = "asdf";
}

function Ctrl2($rootScope, $scope) {
    $scope.value = $rootScope.value;
}
Это было полезно?

Решение

MyController($rootScope,$scope)
{
  $rootScope = ....
}

you get the point :)

Другие советы

If you are trying to show the variable in the view, there is not need of assign the variable from $rootScope to $scope.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top