Angular에서 $rootScope를 사용하여 변수를 저장하는 방법은 무엇입니까? 제가 어떻게 이용합니까$rootScope변수를 컨트롤러에 저장하기 위해 나중에 다른 컨트롤러에 액세스합니다.예를 들어 다음과 같습니다. angular.module('myApp').controller('myCtrl', function($scope) { var a = //something in the scope //put it in the root scope }); angular.module('myApp').controller('myCtrl2', function($scope) { var b = //get var a from root scope somehow //use var b }); 이거 어떻게 해요?루트 스코프에서 설정된..