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 do I create a yes/no dialog box using Angular?
- How do I use AngularJS to create a websocket example?
- How do I use Angular with YAML?
- How can I use AngularJS to read and write Excel (XLSX) files?
- How do I use the window.open function with AngularJS?
- How can I prevent XSS attacks when using AngularJS?
- How can I become an Angular expert from a beginner level?
- How can I use Angular to zoom in and out of a div?
- How do I use Angular Zone to run my code?
- How do I use Angular to zip files?
See more codes...