是否有可能获得 Rails?带有插件的旧 2.2.2 项目中的 find_in_batches 功能?
Rails 2.2.2 没有 find_in_batches 功能(或 find_each)。
有没有一个插件可以提供这个功能?我还没找到。
Rails 2.2.2 didn't have find_in_batches functionality (or find_each).
Is there a plugin that provides this? I haven't been able to find one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 will_paginate 中的
pagination_each
来实现此目的。它可以用作 gem 或插件。例如:
将以 100 个为批次加载您的对象。
You can use
paginated_each
from will_paginate to achieve this. It can be used as a gem or a plugin.For example:
will load your objects in batches of 100.