Limit number of pages in will_paginate

后端 未结 3 1078
眼角桃花
眼角桃花 2021-01-05 16:38

So, when using Sphinx searches are limited to 1000 results. But, if there are more than 1000 results pagination links generated by will_paginate don\'t take thi

3条回答
  •  礼貌的吻别
    2021-01-05 17:11

    if params[:page].to_i * 30 <= 1000
      @posts = Post.paginate(:page => params[:page], :per_page => 30)
    end
    

提交回复
热议问题