답변:
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>
angular.module('app').controller('ParentCtrl', ParentCtrl);
JavaScript
다음을 참조하십시오 developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/...
때로는 하위 범위 내에서 직접 상위 속성을 업데이트해야 할 수도 있습니다. 예를 들어 자식 컨트롤러가 변경 한 후 부모 컨트롤의 날짜와 시간을 저장해야합니다. 예 : 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';
아마도 이것은 절름발이이지만 외부 객체를 가리킬 수도 있습니다.
var cities = [];
function ParentCtrl() {
var vm = this;
vm.cities = cities;
vm.cities[0] = 'Oakland';
}
function ChildCtrl($scope) {
var vm = this;
vm.cities = cities;
}
여기서 ChildCtrl의 편집 내용이 이제 부모의 데이터로 다시 전파된다는 이점이 있습니다.