หาก 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
ในตัวควบคุมหลักตัวควบคุมลูกของคุณจะสืบทอดตัวแปรขอบเขตทั้งหมด ดังนั้น theoritically $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>