遍历Rails中的引导选项卡内容

问题描述

我正在尝试在我的Rails应用程序中使用引导程序创建选项卡内容。我当前的实现看起来像这样

  <div class="tab-content" id="v-pills-tabContent">
    <div class="tab-pane fade show active" id="v-pills-England" role="tabpanel" aria-labelledby="v-pills-England-tab">
      <% @teams.each do | team | %>
        <% if team.team_country == "England" %>
          <div class="form-check">
            <input class="form-check-input" type="radio" name="team" id="<%= team.id %>" value="<%= team.id %>">
            <label class="form-check-label" for="<%= team.id %>">
              <%= team.short_name %>
            </label>
          </div>
        <% end %>
      <% end %>
    </div>
    <div class="tab-pane fade" id="v-pills-France" role="tabpanel" aria-labelledby="v-pills-France-tab">
      <% @teams.each do | team | %>
        <% if team.team_country == "France"%>
          <div class="form-check">
            <input class="form-check-input" type="radio" name="team" id="<%= team.id %>" value="<%= team.id %>">
            <label class="form-check-label" for="<%= team.id %>">
              <%= team.short_name %>
            </label>
          </div>
        <% end %>
      <% end %>
    </div>
  </div>

这行得通,我在合适的国家/地区拥有了预期的“团队”。问题是,代码是如此重复,我正在寻找一种使它更“干”的方法。当我尝试遍历“选项卡内容”类时,我没有让团队进入正确的国家/地区。这就是我尝试过的

    <div class="tab-content" id="v-pills-tabContent">
     <% @teams.each do | team | %>
      <div class="tab-pane fade show active" id="v-pills-<%= team.team_country %>" role="tabpanel" aria-labelledby="v-pills-<%= team.team_country %>-tab">
        <%= team.short_name %>
      </div>
    <% end %>
   </div>

在团队位于正确国家/地区的情况下,迭代选项卡内容并动态插入值的最佳方法是什么。

解决方法

一种选择是使用group_by将阵列分组到各个国家/地区,然后遍历各组:

<div class="tab-content" id="v-pills-tabContent">

  <% @teams.group_by(&:team_country).each do |country,country_teams| %>
    <div class="tab-pane fade show active" id="v-pills-<%= country %>" role="tabpanel" aria-labelledby="v-pills-<%= country %>-tab">

      <% country_teams.each do | team | %>
        <div class="form-check">
          <input class="form-check-input" type="radio" name="team" id="<%= team.id %>" value="<%= team.id %>">
          <label class="form-check-label" for="<%= team.id %>">
            <%= team.short_name %>
          </label>
        </div>
      <% end %>

    </div>
  <% end %>
</div>
,

一种不同的方法,希望对您有帮助

<div class="tab-content" id="v-pills-tabContent">
    <% array_options = @teams.pluck(:team_country).uniq %> <!-- get all countries !>
    <% array_options.each do |country| %>
       <div class="tab-pane fade show active" id="v-pills-<%=country%>" role="tabpanel" aria-labelledby="v-pills-<%=country%>-tab">
      <% @teams.each do | team | %>
        <% if team.team_country == <%=country%> %>
          <div class="form-check">
            <input class="form-check-input" type="radio" name="team" id="<%= team.id %>" value="<%= team.id %>">
            <label class="form-check-label" for="<%= team.id %>">
              <%= team.short_name %>
            </label>
          </div>
        <% end %>
      <% end %>
    </div>
    <% end %>
</div>

这样,无论您有多少国家,它都会为每个国家创建一个标签窗格。