我是建筑物,我希望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
是模型。