我仍然是 Rails 初学者,还有很多东西要学。
目前,我可以一次显示所有图像,没问题:
<!-- For the Thumbnail strip -->
<% @examples.each do |e| %>
<ul class="example-grid"><%= e.description %></ul>
<% if e.image.url != "/images/original/missing.png" %>
<p><%= image_tag e.image.url, size: "200x200" %></p>
<% end %>
<% end %>
但我想首先显示@examples[0]
和从那里的图像,有两个link_to
或button_to
路径来显示@example[current + 1]
。类似的东西。
这是如何运作的?
感谢 SOF 社区!