Rails 3:未定义的方法“页面”对于#<数组 :0xafd0660>

发布于 2024-11-28 01:53:54 字数 126 浏览 3 评论 0原文

我无法克服这一点。我知道我读过没有数组的页面方法,但我该怎么办?

如果我在控制台中运行 Class.all,它会返回 #,但如果我运行 Class.all.page(1),则会收到上述错误。

有什么想法吗?

I can't get past this. I know I've read there isn't a page method for arrays but what do I do?

If I run Class.all in the console, it returns #, but if I run Class.all.page(1), I get the above error.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

蓝眼睛不忧郁 2024-12-05 01:53:54

没有数组没有页面方法。

看起来你正在使用kaminari。 Class.all 返回一个数组,因此您无法对其调用 page 。相反,直接使用 Class.page(1) 。

对于普通数组,kaminari 有一个很棒的辅助方法:

Kaminari.paginate_array([1, 2, 3]).page(2).per(1)

No Array doesn't have a page method.

Looks like you are using kaminari. Class.all returns an array, thus you cannot call page on it. Instead, use Class.page(1) directly.

For normal arrays, kaminari has a great helper method:

Kaminari.paginate_array([1, 2, 3]).page(2).per(1)
虚拟世界 2024-12-05 01:53:54

Kaminari 现在有一种对数组进行分页的方法,因此您可以在控制器中执行以下操作:

myarray = Class.all
@results = Kaminari.paginate_array(myarray).page(params[:page])

Kaminari now has a method for paginating arrays, so you can do something like this in your controller:

myarray = Class.all
@results = Kaminari.paginate_array(myarray).page(params[:page])
独自←快乐 2024-12-05 01:53:54

当您获得未定义的数组方法页面时,可能您正在使用 kaminari gem,并且您正在尝试在控制器操作内对模型进行分页。

NoMethodError at /
undefined method `page' for # Array

在那里,您需要提醒自己两件事,您愿意分页的集合可以是 ArrayActiveRecordRelation 或者当然是其他东西。

要查看差异,假设我们的模型是 Product,并且我们位于 products_controller.rb 上的 index 操作中。我们可以使用以下之一构建我们的@products

@products = Product.all

@products = Product.where(title: 'title')

其他东西...等等

无论哪种方式我们都会获得您的@products ,但是类别不同。

@products = Product.all
@products.class
=> Array

@products = Product.where(title: 'title')
@products.class
=> Product::ActiveRecordRelation

因此,根据集合的类别,我们愿意对 Kaminari 提供的内容进行分页:

@products = Product.where(title: 'title').page(page).per(per)
@products = Kaminari.paginate_array(Product.all).page(page).per(per)

总结一下,这是一个好方法向模型添加分页:

def index
  page = params[:page] || 1
  per  = params[:per]  || Product::PAGINATION_OPTIONS.first
  @products = Product.paginate_array(Product.all).page(page).per(per)

  respond_to do |format|
    format.html
  end

end

在模型内部想要分页(product.rb):

paginates_per 5
# Constants
PAGINATION_OPTIONS = [5, 10, 15, 20]

When you get an undefined method page for Array, probably you are using kaminari gem and you are trying to paginate your Model inside a controller action.

NoMethodError at /
undefined method `page' for # Array

There you need to remind yourself of two things, that the collection you are willing to paginate could be an Array or an ActiveRecordRelation or of course something else.

To see the difference, lets say our model is Product and we are inside our index action on products_controller.rb. We can construct our @products with lets say one of the following:

@products = Product.all

or

@products = Product.where(title: 'title')

or something else... etc

Either ways we get your @products, however the class is different.

@products = Product.all
@products.class
=> Array

and

@products = Product.where(title: 'title')
@products.class
=> Product::ActiveRecordRelation

Therefore depending on the class of the collection we are willing to paginate Kaminari offers:

@products = Product.where(title: 'title').page(page).per(per)
@products = Kaminari.paginate_array(Product.all).page(page).per(per)

To summarise it a bit, a good way to add pagination to your model:

def index
  page = params[:page] || 1
  per  = params[:per]  || Product::PAGINATION_OPTIONS.first
  @products = Product.paginate_array(Product.all).page(page).per(per)

  respond_to do |format|
    format.html
  end

end

and inside the model you want to paginate(product.rb):

paginates_per 5
# Constants
PAGINATION_OPTIONS = [5, 10, 15, 20]
反差帅 2024-12-05 01:53:54

我通过手动调用 Kaminari 的钩子解决了这个问题。添加此行以在您的第一个初始化程序之一中运行:

Kaminari::Hooks.init

我在另一个答案中发布了更多详细信息:

未定义的方法页面#<数组:0xc347540> kaminari“页面”错误。 Rails_admin

I fixed the issue by invoking Kaminari's hooks manually. Add this line to run in one of your first initializers:

Kaminari::Hooks.init

I posted more details in another answer:

undefined method page for #<Array:0xc347540> kaminari "page" error. rails_admin

拥抱影子 2024-12-05 01:53:54

我有同样的错误。捆绑更新后重新启动服务器。两人之一修好了它。

I had the same error. Did bundle update then restarted the server. One of the two fixed it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文