angularjsHow can I access a parent scope variable in an AngularJS controller?
In AngularJS, a controller can access the parent scope variable by using the $scope.$parent
property. For example, given the following controller:
app.controller('ChildCtrl', function($scope) {
// some code here
});
The parent scope variable can be accessed by using the following code snippet:
$scope.$parent.parentVariable;
Code explanation
$scope.$parent
: the property that allows access to the parent scopeparentVariable
: the parent scope variable that is being accessed
Helpful links
More of Angularjs
- How can I use Angular to zoom in and out of a div?
- How do I use Angular to zip files?
- How can I use AngularJS to create a zone in my software development project?
- How can I become an Angular expert from a beginner level?
- How do I use Angular Zone to run my code?
- How can I use Angular and Zorro together to create a software application?
- How can I use the Yandex Map API with AngularJS?
- How do I use Angular Zone to detect and run Angular change detection?
- How do I create a yes/no dialog box using Angular?
- How can I use AngularJS and Jest to test my software development project?
See more codes...