我正在使用轮播来显示图像。我已经将图片上传到云端。但不知何故,它正在自我重复。这是我的代码
div id="myCarousel" class="carousel slide">
<div class="carousell-inner">
<% @img.each_with_index do |i|%>
<% if i.gallery == "Art"%>
<div class="active item">
<%= image_tag (i.image.url) %>
</div>
<% i.next%> <!-- For incrementing the i value but it is not working-->
<div class="item">
<%= image_tag (i.image.url)%>
</div>
<%end%>
<%end%>
</div>
</div>
我想要的是active item
它应该显示图像数组的第一个 url,并且在非活动项目(之后将是活动的)中应该有其他图像。它不应该重复图像。在这里它正在重复图像,因为 的值i
没有改变。