本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- johnsmith9th
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
数组使用will_paginate
有的时候,在开发的过程中需要对模型数组进行分页,此时我们可以如下:
require "will_paginate/array"
array.paginate(page:..., per_page:....)
注意: 如果还需要对model数组排序,可以使用sort,例如,按照created_at倒序排列:
array.sort{|a, b| b.created_at & ...
play framework paginate module
paginate 文档网址: http://www.playframework.org/modules/paginate-head/home
但是因为写的文档并不详细,自己也摸索了下,发现paginate还是很方便的。
1. play install paginate-head 这个包将自动加载到play的module里面(和CRUD一起的那个包)。
2.在项目application.con ...
will_paginate ajax
两种方法
一,
@@pagination_options = { :class => 'pagination',
:prev_label => '上一页',
:next_label => '下一页',
:inner_window => 4, # links around the current page
:outer_win ...