angularjsHow do I use AngularJS lifecycle hooks?
AngularJS lifecycle hooks are used to tap into the different stages of the AngularJS application's lifecycle. These hooks are exposed as functions that are called at specific points in the lifecycle of a component, directive, or service.
The most commonly used AngularJS lifecycle hooks are:
$onInit()
: This hook is called after the controller and its dependencies have been initialized.
Example code
angular.module('myApp', [])
.controller('myController', function() {
this.$onInit = function() {
console.log('Controller initialized!');
};
});
Output example
Controller initialized!
$onChanges()
: This hook is called after one-way or two-way bindings have been updated.
Example code
angular.module('myApp', [])
.controller('myController', function() {
this.name = 'John';
this.$onChanges = function(changesObj) {
console.log('Name changed to ' + changesObj.name.currentValue);
};
});
Output example
Name changed to John
$onDestroy()
: This hook is called just before the controller is destroyed.
Example code
angular.module('myApp', [])
.controller('myController', function() {
this.$onDestroy = function() {
console.log('Controller destroyed!');
};
});
Output example
Controller destroyed!
For more information, see the AngularJS documentation.
More of Angularjs
- How can I create an editable AngularJS application?
- How can I prevent XSS attacks when using AngularJS?
- How do I use Angular Zone to run my code?
- How do I use Angular to zip files?
- How do I implement one-way binding in AngularJS?
- How do I use the window.open function with AngularJS?
- How do I use AngularJS to watch for changes in a variable?
- How do I upgrade my AngularJS application?
- How do I use an AngularJS variable in a template?
- How do I use the ui-sref in AngularJS?
See more codes...