-
Difference between ngBind, ngBindHtm and ngBindTemplate in Angular JS
over 8 years ago
over 8 years ago
Difference between ngBind, ngBindHtm and ngBindTemplate in Angular JS
ng-bind
ng-bind binds the value of a variable or expression to an HTML element i.e the content of HTML element is replaced with the value of a variable or expression when ng-bind is used.
For e.g:
Within Angular JS Controller when a variable is initialized as follows:
The above variable value can be binded to an HTML element through ng-bind:
The above expression will be converted into
<p>Deepak</p>
But this directive cannot be used to bind values of various variables in a single HTML element.
For e.g:
Two variables initialized within Angular JS controller:
The above two variables if used in single HTML element like
This expression will only bind the value of first variable used i.e value of firstname and thereby converting the expression into <p>Deepak</p>.
ng-bind-template
The ng-bind-template directive binds the value of multiple variables to a single HTML element.
For e.g:
Two variables initialized within Angular JS controller:
The above two variables when used in single HTML element with ng-bind-template like
Then this expression will be converted into <p>Deepak Negi</p> displaying Deepak Negi on screen.
ng-bind-html
The ng-bind-html directive not only bind values of a single or multiple variables to a single HTML element but also allows rendering of HTML element used as part of value of variable, this HTML tag rendering is not allowed in ng-bind or in ng-bind-template.
For e.g:
Within Angular JS Controller when variables is initialized as follows:
The above two variables when used within HTML element with ng-bind-html like
Then this expression will be converted into <p><b>Deepak</b><b> Negi</b></p>, rendering <b> html tag displaying Deepak Negi in bold within a paragraph on screen.
If above variable were used like
or
Then both will display <b>Deepak</b> on screen not rendering the HTML tag used as part of value of variable.
Based on above scenarios these three directives can be used according to the requirements.
Can you help out the community by solving one of the following Javascript problems?
Do activity (Answer, Blog) > Earn Rep Points > Improve Rank > Get more opportunities to work and get paid!
For more topics, questions and answers, please visit the Tech Q&A page.
0 Comment(s)