I have the following code:
<li ng-repeat="item in somearray"> <img src="{{ item.url }}" /> </li> For every item the browser makes a GET request that is an encoded expression, for example: "http://someurl.com/somepath/blalba/1/%7B%7Bitem.url%7D%7D". Although it does load these images properly, it makes unnecessary requests. Is there any way to avoid this?