如何查找 ActiveRecord 集中的下一条记录?
我在 Padrino 工作,并且在我的控制器中有这个
@work.find_by_id(params[:id])
我想将上一个/下一个按钮添加到我的视图中,因此必须能够获取列表中下一个项目的路径。我怎样才能用 ActiveRecord 做到这一点?
I am working in Padrino and have this in my controller
@work.find_by_id(params[:id])
I want to add prev/next buttons into my view, and so must be able to get the path to the next item on the list. How can I do that with ActiveRecord?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要查看 ActsAsAdjacent 插件。我不确定您是否可以在 Padrino 中使用插件,但代码非常简单,应该能够适应您的需求。
You may want to checkout the ActsAsAdjacent plugin. I'm not sure if you can use plugins with Padrino, but the code is pretty simple, and should be able to adapt to your needs.
我使用 PreviousNextable 模块,如下所示:
此代码改编自 Ryan Bates 给出的 SO 答案。您确定上一个或下一个的顺序和条件可能会有所不同。也许您会想使用“created_at”。
将该模块包含在您的模型类中:
然后您就可以了。
I use a PreviousNextable module like so:
This code was adapted from an SO answer given by Ryan Bates. Your order and conditions to determine what's previous or next will likely differ. Probably you'll want to use 'created_at'.
Include the module in your model class:
and you're off.