当用作gem中的依赖时,在kaminari中找不到'page'

时间:2012-02-25 08:01:58

标签: ruby-on-rails pagination gem kaminari

我是建筑物,我希望kaminari作为宝石,似乎正在安装kaminari,因为我检查了test_app和gem上的bundle命令。

product = Product.order('products.created_at DESC').page(params[:page]).per(4)

我收到错误说::

Undefined method 'page'.

我在gem btw中使用上面的代码。

def index
  product = Product.order('products.created_at DESC').page(params[:page]).per(4)
end

Product是模型。

0 个答案:

没有答案