困惑了我一段时间的网页分页,今天特地整理了一下我完成不久的项目。下面我要分享下我这个项目的分页代码,前后端通吃。希望前辈多多指教。
一、效果图
下面我先上网页前台和管理端的部分分页效果图,他们用的是一套代码。
二、上代码前的一些知识点
此jQuery插件为Ajax分页插件,一次性加载,故分页切换时无刷新与延迟,如果数据量较大不建议用此方法,因为加载会比较慢。
三、前台代码部分
function Init(pageIndex){ //这个参数就是点击的那个分页的页数索引值,第一页为0,上面提到了,下面这部分就是AJAX传值了。
$.ajax({
type: "post",url:"../getContentPaixuServ?Cat="+str+"&rows="+pageSize+"&page="+pageIndex,async: false,dataType: "json",success: function (data) {
$(".neirong").empty();
/ total = data.total; /
var array = data.rows;
for(var i=0;i<array.length;i++){
var info=array[i];
if(info.refPic != null){
$(".neirong").append('
- <img src="<%=basePathPic%>'+info.refPic+'" alt="'+info.caption+' width="150" height="95""> <dd class="shortdd">'+info.text+'发布时间:'+info.createDate+'
'+info.caption+'
}else{
$(".neirong").append('
'+info.caption+'
<dd class="shortdd">'+info.text+'发布时间:'+info.createDate+'};
}
},error: function () {
alert("请求超时,请重试!");
}
});
};
四、后台部分(java)
我用的是MVC 3层模型servlet部分: (可以跳过)
PrintWriter out = response.getWriter();
//获取分页参数
String p=request.getParameter("page"); //当前第几页(点击获取)
int page=Integer.parseInt(p);
String row=request.getParameter("rows"); //每页显示多少条记录
int rows=Integer.parseInt(row);
String s=request.getParameter("Cat"); //栏目ID
int indexId=Integer.parseInt(s);
JSONObject object=(new ContentService()).getContentPaiXuById(indexId,page,rows);
out.print(object);
out.flush();
out.close();
}
Service部分:(可以跳过)
}
JSONObject obj=new JSONObject();
obj.put("total",contentlist1.size());
obj.put("rows",array);
return obj;
}
获取出每页的的起止id(这部分是重点),同样写在Service中,比如说假设一页有6条内容,那么第一页的id是从1到6,第二页的id是从7到12,以此类推
Dao层: (可以跳过)
<div class="jb51code">
<pre class="brush:java;">
public List selectIndexById(int indexId){
List
try{
conn = DBConn.getCon();
String sql = "select * from T_Content,T_User where T_Content.AuthorId = T_User.UserId and CatlogId=? order by CreateDate desc";
pstm = conn.prepareStatement(sql);
pstm.setInt(1,indexId);
rs = pstm.executeQuery();
SimpleDateFormat ff=new SimpleDateFormat("yyyy年MM月dd日 hh时mm分");
while(rs.next()){
Content content = new Content();
content.setContentId(rs.getInt("ContentId"));
content.setCaption(rs.getString("Caption"));
content.setCreateDate(f.format(rs.getTimestamp("CreateDate")));
content.setTimes(rs.getInt("Times"));
content.setSource(rs.getString("Source"));
content.setText(rs.getString("Text"));
content.setPic(rs.getString("Pic"));
content.setRefPic(rs.getString("RefPic"));
content.setHot(rs.getInt("Hot"));
User user = new User();
user.setUserId(rs.getInt("UserId"));
content.setAuthorId(user);
Catlog catlog = new Catlog(); //CntURL待开发
catlog.setCatlogId(rs.getInt("CatlogId"));
content.setCatlog(catlog);
list.add(content);
}
}catch(Exception e){
e.printStackTrace();
}finally{
DBConn.closeDB(conn,pstm,rs);
}
return list;
}