总是报 undefined method `current_page' for #ActiveSupport::SafeBuffer:0x71219d0
代码如下: Controller: articles_controller.rb
#原先
@articles = Article.order('published_at').all
#之后
@articles = Article.order('published_at').page(params[:page]).per(3)
View:index.html.erb
#原先
<%= render @articles %>
#之后
<%= paginate render @articles %>