Actually there multiple ways of resolving this, which will are listed below
- For most people who don’t like the look of braces in your html code, good news, you can make use of the ‘ng-bind’ of angular directive just like below.
Eg.
reference to ngBind could be found in ngbind<div ng-bind="title">
-
And for those people who still want to stick with the braces, it isn’t bad news also for you, you can still resolve this issues by making use of the ‘ng-cloak’ which is also an angularjs built-in directive, to use this method to resolve the issue refer below.
Eg.
Index.html
style.css<div ng-cloak="">{{ title }}</div>
and as well reference to ngCloak could be found in ngCloak[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak { display: none!important;}
- And lastly if it is much work and you have no pressure on you, you can just continue ignoring it until it starts getting annoying. Just kidding that all i have.
I hope this can help someone out there.