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?
|
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? |
|||
|
|
|
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 now has a method for paginating arrays, so you can do something like this in your controller:
|
|||
|
|
|
I had the same error. Did bundle update then restarted the server. One of the two fixed it. |
|||
|
|
|
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 |
|||
|
|