本教程演示了使用指令ngSrc代替src:
<ul class="phones">
<li ng-repeat="phone in phones" class="thumbnail">
<img ng-src="{{phone.imageUrl}}">
</li>
</ul>
他们要求:
用普通的旧src属性替换ng-src指令。
使用诸如Firebug或Chrome的Web检查器之类的工具,或检查网络服务器访问日志,确认该应用确实确实向/app/%7B%7Bphone.imageUrl%7D%7D(或 / app / {{phone .imageUrl}})。
我这样做了,它给了我正确的结果:
<li class="thumbnail ng-scope" ng-repeat="phone in phones">
<img src="img/phones/motorola-xoom.0.jpg">
</li>
有什么理由吗?
互换的青春
慕斯709654
相关分类