Rails:一次加载两个表格单元格

发布于 2024-11-28 04:12:02 字数 231 浏览 2 评论 0原文

这看起来应该很容易,但我想不出办法。本质上,我想加载(在 ERB 中,从通过 Rails 获取的集合)一个包含单元格的 HTML 表,这样第一行有前两条记录,第二行有接下来的两条记录,等等。像这样

-----------
| 1  |  2 |
| 3  |  4 |
| 5  |  6 |
-----------

:是一种一次迭代两个记录的集合的 Ruby/Rails 方法。

This seems like it should be easy, but I can't figure out a way to do it. Essentially I want to load (in ERB, from a collection fetched via Rails) an HTML table with cells such that the first row has the first two records, the second row has the next two, etc. Something like this:

-----------
| 1  |  2 |
| 3  |  4 |
| 5  |  6 |
-----------

Seems like there would be a Ruby/Rails way to iterate over a collection two records at a time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

网名女生简单气质 2024-12-05 04:12:02

啊,在 这个问题

为了后代的利益,这是我的解决方案:

  <% @users.each_slice(2) do |two| %>
     <tr>
        <% two.each do |p| %>
           <td>
              <%= p.id %>
           </td>
        <% end %>
     </tr>
  <% end %>

Ah, figured it out moments after posting, with help from this question.

For posterity's sake, here's my solution:

  <% @users.each_slice(2) do |two| %>
     <tr>
        <% two.each do |p| %>
           <td>
              <%= p.id %>
           </td>
        <% end %>
     </tr>
  <% end %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文