将分页逆序
我有一个收藏,其中有 118 条记录。
我正在使用以下对象: @tweets = @all_tweets.paginate(:page => page.to_i, :per_page => 100)
对我的推文进行分页
第 1 页有 100 条记录,第 1 页2 有 18。
假设我正在按 DESC 顺序对记录进行排序,并且我想反转视图。如何让第 1 页显示 18 条记录,第 2 页显示 100 条(最多)。
I have a collection with say 118 records.
I'm using the following object: @tweets = @all_tweets.paginate(:page => page.to_i, :per_page => 100)
to paginate my tweets
Page 1 has 100 records, page 2 has 18.
Say I'm ordering my records in DESC order AND I want to reverse the views. How do I get page 1 to display 18 records and page 2 to show 100 (the max).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查 http://www.wenda120.com/categories/24 ,是你想要的吗?
如果有,打开view_helpers.rb,找到to_html方法,
我的样子是这样的:
我把它改成了这样:
Check http://www.wenda120.com/categories/24 , is it what you want?
If so, open view_helpers.rb, find to_html method,
my looks like this:
I changed it to this: