How to implement bootstrap corousel with angular ng-repeat?
问题 When I am trying to use ng-repeat inside corousel-inner the corousel is not working properly, how to use carousel with ng-repeat ? 回答1: Not exact but seems like what you want. <div class="container" ng-show="ifImages"> <br> <div id="myCarousel" class="carousel slide" data-ride="carousel"> <!-- Indicators --> <ol class="carousel-indicators" ng-repeat="image in images"> <li data-target="#myCarousel" data-slide-to="$index" ng-class="{'active': $index == 0}"></li> </ol> <!-- Wrapper for slides --