gpt4 book ai didi

ruby-on-rails - Rails 如何使用 in_groups_of 进行索引

转载 作者:行者123 更新时间:2023-12-05 09:19:53 25 4
gpt4 key购买 nike

我正在使用 in_groups_of 创建 3 行的 View 中显示图片。但是,我需要对第一行的第一项做一些不同的事情。我如何定位此项目?

<% images.in_groups_of(3) do |row| %>
<div class="row">
<% row.each_with_index do |image, index| %>
<div class="item-wrapper">
<% if image %>
<a class="flex-item" <img class="photo" src="<%= image.picture.medium.url %>" alt="" /></a>
<% end %>
</div>
<% end %>
</div>
<% end %>

除了第一行中的第一张照片,我想在每个 anchor 标记下方添加此代码。

<% if user.eql?(current_user) %>
<button class="btn btn-xs btn-danger delete-image" data-id="<%= image.id %>">
<i class="fa fa-trash-o fa-lg"></i>
</button>
<% end %>

最佳答案

要获取当前行的索引,试试这个:

<% images.in_groups_of(3).each_with_index do |row, row_index| %>

现在您可以检查 row_indexindex 是否为零,然后打印所需的代码。

关于ruby-on-rails - Rails 如何使用 in_groups_of 进行索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39183679/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com