gpt4 book ai didi

ruby-on-rails - 如何遍历多个数组并在每第 n 次迭代后添加异常?

转载 作者:太空宇宙 更新时间:2023-11-03 16:02:10 26 4
gpt4 key购买 nike

这应该相当简单,我知道如何在迭代中增加计数器以及如何嵌套循环 - 但我想知道是否有更优雅的解决方案?

我如何计算迭代运行的频率并在每次运行 X 次时注入(inject)额外的代码?

我尝试使用 each_slice,但这是查看数组本身的内容而不是数组的数量。

这是我的示例代码:

<% @organization.users.each do |user| %>
<div class="row">
<div class="col-xs-6 col-md-3">
<%= user.profile.first_name %> <%= user.profile.last_name %>
<%= link_to 'Show', organization_user_path(@organization, user.id) %>
<%= link_to 'Edit', '#' %>
</div>
</div>
<% end %>

理想情况下我会运行循环 4 次,在第 4 次之后将添加一个新行

最佳答案

您可以使用each_with_index 并使用index 来了解循环运行的次数

<% @organization.users.each_with_index do |user, i| %>
<div class="row">
<div class="col-xs-6 col-md-3">
<%= user.profile.first_name %> <%= user.profile.last_name %>
<%= link_to 'Show', organization_user_path(@organization, user.id) %>
<%= link_to 'Edit', '#' %>
</div>
</div>
<%if (i+1)%4 == 0 %>
<% end %>
<% end %>

关于ruby-on-rails - 如何遍历多个数组并在每第 n 次迭代后添加异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22051226/

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