- Angular JS Tutorial
- AngularJS Home
- AngularJS Introduction
- AngularJS Expressions
- AngularJS Directives
- AngularJS Modules
- AngularJS Controllers
- AngularJS Scopes
- AngularJS Data Binding
- AngularJS Services
- AngularJS HTTP
- AngularJS Filters
- AngularJS Forms
- AngularJS Validation
- AngularJS DOM Manipulation
- AngularJS Select
- AngularJS Tables
- AngularJS Events
- AngularJS Routing
- AngularJS Includes
- AngularJS Animations
- AngularJS Dependency Injection
- AngularJS API
- AngularJS Deployment
AngularJS Scopes
AngularJS Scopes provide the context for the AngularJS application model. They act as a bridge between the view (HTML) and the controller (JavaScript), facilitating data binding and event handling.
What is a Scope?
- A scope is an object in AngularJS that holds application data and methods.
- It connects the controller and the view.
- Expressions in the view are evaluated within the context of a scope.
Types of Scopes
1. $rootScope
- A global scope object available throughout the AngularJS application.
- Variables and methods added to
$rootScope
are accessible from any controller or view. - Example:
$rootScope.globalVar = "I am global!";
2. Child Scope
- Created when a controller or directive is initialized.
- Inherits properties from the
$rootScope
or parent scope but can also have its own properties and methods. - Changes to child scope do not affect the parent unless explicitly defined.
Scope Hierarchy
- Scopes are hierarchical and follow the structure of the DOM.
- Child scopes inherit from their parent scope.
- This hierarchy ensures isolation between different parts of the application.
Scope Functions and Properties
1. $watch(expression, callback)
- Monitors changes to a scope variable or expression.
- Example:
$scope.$watch('count', function(newVal, oldVal) {
console.log('Count changed from', oldVal, 'to', newVal);
});
2. $apply(expression)
- Executes an expression and triggers the digest cycle, ensuring data bindings are updated.
- Example:
$scope.$apply(function() {
$scope.name = "Updated Name";
});
3. $digest()
- Manually starts the digest cycle to update the view with the current scope values.
- Usually not required unless AngularJS is integrated with third-party libraries.
4. $on(event, listener)
- Listens for events broadcasted or emitted in the scope hierarchy.
- Example:
$scope.$on('customEvent', function(event, data) {
console.log('Custom event received with data:', data);
});
5. $emit(event, data)
- Emits an event upwards in the scope hierarchy (from child to parent).
- Example:
$scope.$emit('customEvent', { key: 'value' });
6. $broadcast(event, data)
- Broadcasts an event downwards in the scope hierarchy (from parent to children).
- Example:
$scope.$broadcast('customEvent', { key: 'value' });
Best Practices for Using Scopes
- Minimize usage of
$rootScope
to avoid unintended side effects. - Use isolated scopes in directives for better encapsulation.
- Avoid excessive
$watch
calls to maintain performance. - Always clean up scope listeners (
$on
) to prevent memory leaks.
Summary
AngularJS Scopes are essential for maintaining the synchronization between the view and the controller. They provide a structured way to manage application data and facilitate interaction across the application's components. Understanding and properly managing scopes are key to building efficient and maintainable AngularJS applications.