sql – Rails分页 – 从实例id查找页码

前端之家收集整理的这篇文章主要介绍了sql – Rails分页 – 从实例id查找页码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我有一个分页项目的id的情况下,我如何找到它的页码

我正在使用rails 3和kaminari.

不幸的是,将页码作为参数传递不是一个选项.分页的项目是由用户生成内容随时间发展而维护的图像库的图像.这意味着图像可能会在第一周出现在第一页,但第二页可能在下一周出现.

另一个选择是维护一个数字的图像顺序(acts_as_list),在我的情况下,这是不可能的,因为照片可能会出现在不同范围的多个画廊中.

编辑:

已经在这个问题上添加了一个赏金,因为我在几年前在各个地方看到同样的问题,没有解决办法.如果没有有效的记录解决方案出现,我很乐意接受一个SQL查询.

解决方法

# Your "per_page" count
per_page = 30
# Your Image instance:
@image = Image.find_your_image
# sql. If you're ordering by id,how many lower IDs are there?
position = Image.where("id <= ?",@image.id").count
# Your page
page = (position.to_f/per_page).ceil

现在你可以把它包装成一个类的方法

class Image < ActiveRecord::Base
  def page(order = :id,per_page = 30)
    position = Image.where("#{order} <= ?",self.send(order)).count
    (position.to_f/per_page).ceil
  end
end

用法

@image.page
@image.page(:created_at)
@image.page(:title,10)
原文链接:https://www.f2er.com/mssql/82500.html

猜你在找的MsSQL相关文章