I make a simple demo in angular js to call service .Actually I am not able to display my image in my list . First check my web service url
- http://timesofindia.indiatimes.com/feeds/newsdefaultfeeds.cms?feedtype=sjson
- I call web service using display web security like that on macc /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --disable-web-security --allow-file-access-from-files --allow-file-access --user-data-dir=~/chrome-test/ spec/runner.html
on desktop : --disable -websecurity
- I am able to call service but my image is not display on list here is my code on code pen
http://codepen.io/anon/pen/qdPoYN
<div class="list" ng-repeat="d in data">
<a class="item item-thumbnail-left" href="#">
<img src={{d.image.Thumb}}>
<h2>{{d.HeadLine}}</h2>
<p>{{d.DateLine}}</p>
</a>
</div>
</div>