I was in one of the angular presentation and one of the person in the meeting mentioned ng-bind
is better than {{}}
binding.
One of the re
{{...}}
is meant two-way data binding. But, ng-bind is actually meant for one-way data binding.
Using ng-bind will reduce the number of watchers in your page. Hence ng-bind will be faster than {{...}}
. So, if you only want to display a value and its updates, and do not want to reflect its change from UI back to the controller, then go for ng-bind. This will increase the page performance and reduce the page load time.
Hello,