Hello, I was wondering if I can receive some help due to a problem with ng-repeat in a Slideshow of images. I checked the other threads before submitting this one and did not find the solution. So basically i get this array of links from a service of mine and want to repeat them in a slideshow. Here the code
<div class="item item-image">
<ion-slide-box does-continue="true" auto-play="true" on-slide-changed="slideHasChanged($index)">
<ion-slide ng-repeat="photo in extraelement.image">
<div ng-if="extraelement.website"><img src="{{photo}}" ng-click="goToLink('http://{{extraelement.website}}')"></div>
<div ng-if="!extraelement.website"><img src="{{photo}}"></div>
</ion-slide>
</ion-slide-box>
</div>
It works all fine but in the console logs i get this: GET http://localhost:8100/{{photo}} 404 (Not Found) ---- the error line is: %7B%7Bphoto%7D%7D:1
which looks strange. Since this bug kinda makes to crash my app, can anyone help me? Thank you