development

자식 컨트롤러에서 AngularJS 액세스 부모 범위

big-blog 2020. 2. 26. 07:54
반응형

자식 컨트롤러에서 AngularJS 액세스 부모 범위


컨트롤러를 사용하여 컨트롤러를 설정했습니다. data-ng-controller="xyzController as vm"

부모 / 자식 중첩 컨트롤러에 대한 시나리오가 있습니다. 을 사용하여 중첩 된 HTML의 부모 속성에 액세스하는 데 문제가 없지만 $parent.vm.property자식 컨트롤러 내에서 부모 속성에 액세스하는 방법을 알 수 없습니다.

$ scope를 주입하고을 사용하려고 시도했지만 $scope.$parent.vm.property작동하지 않습니까?

누구든지 조언을 줄 수 있습니까?


HTML이 아래와 같으면 다음과 같이 할 수 있습니다.

<div ng-controller="ParentCtrl">
    <div ng-controller="ChildCtrl">
    </div>
</div>

그런 다음 다음과 같이 부모 범위에 액세스 할 수 있습니다

function ParentCtrl($scope) {
    $scope.cities = ["NY", "Amsterdam", "Barcelona"];
}

function ChildCtrl($scope) {
    $scope.parentcities = $scope.$parent.cities;
}

뷰에서 상위 컨트롤러에 액세스하려면 다음과 같이해야합니다.

<div ng-controller="xyzController as vm">
   {{$parent.property}}
</div>

jsFiddle을 참조하십시오 : http://jsfiddle.net/2r728/

최신 정보

실제로 cities상위 컨트롤러에서 정의한 이후 하위 컨트롤러는 모든 범위 변수를 상속합니다. 이론적으로는 전화 할 필요가 없습니다 $parent. 위의 예제는 다음과 같이 작성할 수도 있습니다.

function ParentCtrl($scope) {
    $scope.cities = ["NY","Amsterdam","Barcelona"];
}

function ChildCtrl($scope) {
    $scope.parentCities = $scope.cities;
}

AngularJS 문서는이 접근법을 사용합니다. 여기에서 에 대한 자세한 내용을 읽을 수 있습니다 $scope.

다른 업데이트

나는 이것이 원래 포스터에 대한 더 나은 대답이라고 생각합니다.

HTML

<div ng-app ng-controller="ParentCtrl as pc">
    <div ng-controller="ChildCtrl as cc">
        <pre>{{cc.parentCities | json}}</pre>
        <pre>{{pc.cities | json}}</pre>
    </div>
</div>

JS

function ParentCtrl() {
    var vm = this;
    vm.cities = ["NY", "Amsterdam", "Barcelona"];
}

function ChildCtrl() {
    var vm = this;
    ParentCtrl.apply(vm, arguments); // Inherit parent control

    vm.parentCities = vm.cities;
}

controller as방법 을 사용하면 다음과 같이 상위 범위에 액세스 할 수도 있습니다.

function ChildCtrl($scope) {
    var vm = this;
    vm.parentCities = $scope.pc.cities; // note pc is a reference to the "ParentCtrl as pc"
}

보시다시피 액세스 방법에는 여러 가지가 $scopes있습니다.

바이올린 업데이트

function ParentCtrl() {
    var vm = this;
    vm.cities = ["NY", "Amsterdam", "Barcelona"];
}
    
function ChildCtrl($scope) {
    var vm = this;
    ParentCtrl.apply(vm, arguments);
    
    vm.parentCitiesByScope = $scope.pc.cities;
    vm.parentCities = vm.cities;
}
    
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.20/angular.min.js"></script>
<div ng-app ng-controller="ParentCtrl as pc">
  <div ng-controller="ChildCtrl as cc">
    <pre>{{cc.parentCities | json}}</pre>
    <pre>{{cc.parentCitiesByScope | json }}</pre>
    <pre>{{pc.cities | json}}</pre>
  </div>
</div>


방금 확인했습니다

$scope.$parent.someProperty

나를 위해 작동합니다.

그리고 그것은

{{$parent.someProperty}}

보기를 위해.


당신이 사용하는 경우 as구문을, 같은 ParentController as parentCtrl에서 액세스 부모 범위 변수에 다음 컨트롤러를 정의하는 자식 컨트롤러 사용 다음 :

var id = $scope.parentCtrl.id;

여기서 parentCtrl사용 상위 컨트롤러의 이름 as구문과 id같은 제어기에 정의 된 변수이다.


때로는 하위 범위 내에서 직접 상위 속성을 업데이트해야 할 수도 있습니다. 예를 들어 자식 컨트롤러가 변경 한 후 부모 컨트롤의 날짜와 시간을 저장해야합니다. 예 : JSFiddle의 코드

HTML

<div ng-app>
<div ng-controller="Parent">
    event.date = {{event.date}} <br/>
    event.time = {{event.time}} <br/>
    <div ng-controller="Child">
        event.date = {{event.date}}<br/>
        event.time = {{event.time}}<br/>
        <br>
        event.date: <input ng-model='event.date'><br>
        event.time: <input ng-model='event.time'><br>
    </div>
</div>

JS

    function Parent($scope) {
       $scope.event = {
        date: '2014/01/1',
        time: '10:01 AM'
       }
    }

    function Child($scope) {

    }

범위 상속을 피하고 "전역"범위에 항목을 저장할 수도 있습니다.

응용 프로그램에 다른 모든 컨트롤러를 래핑하는 기본 컨트롤러가있는 경우 전역 범위에 "후크"를 설치할 수 있습니다.

function RootCtrl($scope) {
    $scope.root = $scope;
}

그런 다음 모든 하위 컨트롤러에서을 사용하여 "전역"범위에 액세스 할 수 있습니다 $scope.root. 여기에서 설정 한 모든 것이 전세계에 표시됩니다.

예:

function RootCtrl($scope) {
  $scope.root = $scope;
}

function ChildCtrl($scope) {
  $scope.setValue = function() {
    $scope.root.someGlobalVar = 'someVal';
  }
}

function OtherChildCtrl($scope) {
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>

<div ng-app ng-controller="RootCtrl">
  
  <p ng-controller="ChildCtrl">
    <button ng-click="setValue()">Set someGlobalVar</button>
  </p>
  
  <p ng-controller="OtherChildCtrl">
    someGlobalVar value: {{someGlobalVar}}
  </p>

</div>


최근에 비슷한 수량이 있다고 생각합니다.

function parentCtrl() {
   var pc = this; // pc stands for parent control
   pc.foobar = 'SomeVal';
}

function childCtrl($scope) {

   // now how do I get the parent control 'foobar' variable?
   // I used $scope.$parent

   var parentFoobarVariableValue = $scope.$parent.pc.foobar;

   // that did it
}

내 설정이 약간 다르지만 여전히 동일한 기능이 작동해야합니다.


하위 컴포넌트에서 'require'를 사용하여 상위 컴포넌트의 특성 및 메소드에 액세스 할 수 있습니다. 예를 들면 다음과 같습니다.

부모의:

.component('myParent', mymodule.MyParentComponent)
...
controllerAs: 'vm',
...
var vm = this;
vm.parentProperty = 'hello from parent';

아이:

require: {
    myParentCtrl: '^myParent'
},
controllerAs: 'vm',
...
var vm = this;
vm.myParentCtrl.parentProperty = 'hello from child';

매우 쉽고 효과적이지만 왜 그런지 확실하지 않습니다 ....

angular.module('testing')
  .directive('details', function () {
        return {
              templateUrl: 'components/details.template.html',
              restrict: 'E',                 
              controller: function ($scope) {
                    $scope.details=$scope.details;  <=== can see the parent details doing this                     
              }
        };
  });

아마도 이것은 절름발이이지만 외부 객체를 가리킬 수도 있습니다.

var cities = [];

function ParentCtrl() {
    var vm = this;
    vm.cities = cities;
    vm.cities[0] = 'Oakland';
}

function ChildCtrl($scope) {
    var vm = this;
    vm.cities = cities;
}

여기서 ChildCtrl의 편집 내용이 이제 부모의 데이터로 다시 전파된다는 이점이 있습니다.

참고 URL : https://stackoverflow.com/questions/21453697/angularjs-access-parent-scope-from-child-controller



반응형