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
If you are not using ng-bind
, instead something like this:
Hello, {{user.name}}
you might see the actual Hello, {{user.name}}
for a second before user.name
is resolved (before the data is loaded)
You could do something like this
Hello,
if that's an issue for you.
Another solution is to use ng-cloak.