will_paginate undefined method `total_pages'

后端 未结 5 1933
失恋的感觉
失恋的感觉 2020-12-13 12:36

What am I missing here? I am using the haml_scaffold generator and the pages work fine with will_paginate. When I start tinkering I end up with this \'total_pages\' error an

5条回答
  •  春和景丽
    2020-12-13 13:06

    @locations = Location.paginate(:all, :conditions => 'city = springfield')
    

    @locations must be an object

    in your example @locations is an Array

    array cant have total_pages method

提交回复
热议问题