Angular.js ng-src for Images
I am always falling victim to causing an error by using Angular Expressions inside a src attribute.
I am writing this post specifically to hopefully remember to always use ng-src.
<img src="" />
The reason for the error is the browser tries to load the image before the Expression evaluates.
The ng-src Directive is needed to print out the source.
<img ng-src="" />
Hopefully this will help with my memory.
Written on July 29, 2015