Rails 3:未定义的方法“页面”对于#<数组 :0xafd0660>数组>
我无法克服这一点。我知道我读过没有数组的页面方法,但我该怎么办?
如果我在控制台中运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
没有数组没有页面方法。
看起来你正在使用kaminari。 Class.all 返回一个数组,因此您无法对其调用 page 。相反,直接使用 Class.page(1) 。
对于普通数组,kaminari 有一个很棒的辅助方法:
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 现在有一种对数组进行分页的方法,因此您可以在控制器中执行以下操作:
Kaminari now has a method for paginating arrays, so you can do something like this in your controller:
当您获得未定义的数组方法页面时,可能您正在使用 kaminari gem,并且您正在尝试在控制器操作内对模型进行分页。
在那里,您需要提醒自己两件事,您愿意分页的集合可以是 Array 或 ActiveRecordRelation 或者当然是其他东西。
要查看差异,假设我们的模型是 Product,并且我们位于 products_controller.rb 上的 index 操作中。我们可以使用以下之一构建我们的@products:
或
或其他东西...等等
无论哪种方式我们都会获得您的@products ,但是类别不同。
和
因此,根据集合的类别,我们愿意对 Kaminari 提供的内容进行分页:
总结一下,这是一个好方法向模型添加分页:
在模型内部想要分页(product.rb):
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.
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:
or
or something else... etc
Either ways we get your @products, however the class is different.
and
Therefore depending on the class of the collection we are willing to paginate Kaminari offers:
To summarise it a bit, a good way to add pagination to your model:
and inside the model you want to paginate(product.rb):
我通过手动调用 Kaminari 的钩子解决了这个问题。添加此行以在您的第一个初始化程序之一中运行:
我在另一个答案中发布了更多详细信息:
未定义的方法页面#<数组: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:
I posted more details in another answer:
undefined method page for #<Array:0xc347540> kaminari "page" error. rails_admin
我有同样的错误。捆绑更新后重新启动服务器。两人之一修好了它。
I had the same error. Did bundle update then restarted the server. One of the two fixed it.