最佳答案
这个 教程演示了使用指令 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>
有什么原因吗?