angularjsHow do I use the ng-init directive in AngularJS?
The ng-init
directive in AngularJS is used to initialize data for an application before AngularJS compiles the page. It allows you to set up variables with initial values before the page is rendered.
<div ng-init="name='John'">
{{name}}
</div>
Output example
John
The code above uses the ng-init
directive to set the variable name
to the value John
. The variable name
is then used inside the div to display the value.
Code explanation
ng-init
: The directive used to initialize data for an application before AngularJS compiles the page.name='John'
: The variable set to the valueJohn
.{{name}}
: The variable used to display the value.
Helpful links
More of Angularjs
- How can I implement XSS protection in an AngularJS application?
- How can I create an editable AngularJS application?
- How can I use Angular to zoom in and out of a div?
- How do I upgrade my AngularJS application?
- How can I use AngularJS to prevent default behavior?
- How can I become an Angular expert from a beginner level?
- How do I use Angular to zip files?
- How can I use an AngularJS XSS cheat sheet to protect my website from malicious attacks?
- How do I use Angular with YAML?
- How do I use the window.open function with AngularJS?
See more codes...