我正在尝试使用 will_paginate gem,但出了点问题。我遇到了一个undefined method `paginate'
错误。我阅读了很多问题并尝试了很多事情。这是我所拥有的:
这是我的 LocationsController.rb:
def index
@locations = Location.all
respond_to do |format|
@locations = @locations.paginate(:page => params[:page], :per_page => 10)
format.html #index.html.erb
format.json { render json: @locations }
end
end
这是我的 will_paginate 行index.html.erb
:
<%= will_paginate @locations %>
这是错误:
undefined method `paginate' for #<Class:0xaa2e48c>
我还在我的Gemfile
:
gem "will_paginate", "~> 3.0.4", :require => nil
这在我的结尾environment.rb
:
require "will_paginate"`