rails中的will_paginate错误

时间:2011-04-15 18:13:09

标签: ruby-on-rails will-paginate

对不起我的will_paginate插件有问题。

在localhost中,在我的控制器中,我使用person.operations.descend_by_date.paginate :page => params[:page] || 1。但是在生产中,该方法显示错误。我认为问题是参数页面。因为person.operation.descend_by_date会返回一个集合,所以我会尝试passing only params[:page] || 1

但是在localhost中显示错误。罕见的主题是:

如果我评估方法一次=>显示错误 如果我评估该方法两次或更多次=>工作正常

Rails显示此消息错误:hash parameters expected

为什么会出错?

1 个答案:

答案 0 :(得分:0)

首先我将will_paginate对象转换为数组,然后我使用will_paginate数组的方法

person.operations.descend_by_date.to_a.paginate params[:page] || 1

由于