我已经在img src中给了json图片网址,但img不会加载。当我从ng-src检查生成的URL时,图像会加载。请帮忙。
<ion-item ng-repeat="post in posts" href="#/app/post/{{post.ID}}">
<img ng-src="post.imageurl"/> {{post.title}}
</ion-item>
答案 0 :(得分:0)
您需要将URL声明为角度范围变量,如下所示
<img ng-src="{{post.imageurl}}"/>