15
AngularJS : 컨트롤러간에 변수를 전달하는 방법은 무엇입니까?
두 개의 Angular 컨트롤러가 있습니다. function Ctrl1($scope) { $scope.prop1 = "First"; } function Ctrl2($scope) { $scope.prop2 = "Second"; $scope.both = Ctrl1.prop1 + $scope.prop2; //This is what I would like to do ideally } 정의되지 않았기 때문에 Ctrl1내부를 사용할 수 없습니다 Ctrl2. 그러나 내가 그렇게 전달하려고하면 ... function Ctrl2($scope, Ctrl1) { …