angularjs - Image Not Displayed in HTML -
the image not displayed below code. if can see //xyz.jpg?h=100&w=100 in browser.
what might missing?
<img class="item-thumbnail pointer" data-ng-if="!ispdf()" data-ng-class="{'pointer':showpointer()}" data-ng-src="//xyz.jpg?h=100&w=100" alt="" src="xyz.jpg?h=100&w=100">
data-ng-src="'xyz.jpg?h=100&w=100'"
(string url value)
and
src="xyz.jpg?h=100&w=100"
(url value)
make sure image url yourdomain/xyz.jpg?h=100&w=100
you should use src
in case.