FlexSlider
FlexSlider copied to clipboard
Fetching Thumbnail images dynamically
How do I fetch the thumbnail images from the API? What I have is returning an error in an Angular project I am working on. Any way around it?.
<ng-container *ngFor="let image of currentproduct.imageUrl; let in = index"> <li data-thumb="{{currentproduct.imageUrl[in]}}" rel="adjustX:10, adjustY:">//this part is returning error 404 on the browser. <img src="{{ currentproduct.imageUrl[in] }}" alt="#" /> </li>