Controller As 접근 방식을 사용하여 상속된 범위에 액세스 컨트롤러를 정의하는 원래 방법에서는 하위 범위가 원형적으로 상위 범위로부터 상속되기 때문에 상위 범위에 액세스하는 것이 상당히 간단했습니다. app.controller("parentCtrl", function($scope){ $scope.name = "Parent"; }) .controller("childCtrl", function($scope){ $scope.childName = "child of " + $scope.name; }); {{name}} {{childName}} Controller-As 접근법은 컨트롤러를 선언하는 데 권장되는 방법인 것 같습니다.그러나 Controller-As에서는 위의 접근법이 더 이상 작동하지 않습니다..