本文为大家分享了nodejs个人博客开发的数据分页,具体内容如下
控制器路由定义
首页路由:http://localhost:8888/
首页分页路由:http://localhost:8888/index/2
分类列表分页路由:http://localhost:8888/category/分类id/分页
模型数据部分
控制器调用article模型的assignIndexData()方法,参数:分类id,当前页,每页条数,响应对象
调用category模型的getAllList()方法得到分类list,参数:回调函数
调用article模型的getCount()方法得到总条数,参数:分类id,回调函数
调用article模型的getArticlePager()方法得到文章对象的数据list,参数:分类id,当前页,每页条数,回调函数
对上一页,下一页进行-1和+1,并进行判断,上一页应大于0,下一页应小于等于总页数(总条数/每页条数 向上取整)
把数据分配到模板上
<div class="jb51code">
<pre class="brush:js;">
/**
-
文章模型文件
/
module.exports={
/获取条数/
getCount:function(categoryId,callback){
var condition="";
if(categoryId!=0){
condition="where category_id="+categoryId;
}
var sql="select count() num from article "+condition;
db.query(sql,callback);
},/获取分页数据/
getArticlePager:function(categoryId,callback){
if(currentPage<=0||!currentPage) currentPage=1;
var start=(currentPage-1)pageSize;
var end=pageSize;
var condition="";
if(categoryId!=0){
condition="where category_id="+categoryId;
}
var sql="select from article "+condition+" order by time desc limit "+start+","+end;
db.query(sql,/归档/
getArchives:function(callback){
db.query("select time from article order by time desc",/分配首页数据/
assignIndexData:function(cid,res){
var categoryModel=F.model("category");
var articleModel=this;
// 分类数据
categoryModel.getAllList(function(err,categoryList){
// 文章条数
articleModel.getCount(cid,function(err,nums){
// 文章分页
articleModel.getArticlePager(cid,articleList){
var nextPage=(currentPage+1)>=Math.ceil(nums[0].num/pageSize) ? Math.ceil(nums[0].num/pageSize) : currentPage+1;
var prePage=(currentPage-1)<=0 ? 1 : currentPage-1;
// 归档
articleModel.getArchives(function(err,allArticleTime){
var newArticleTime=[];
for(var i=0;i<allArticleTime.length;i++){
newArticleTime.push(F.phpDate("y年m月",allArticleTime[i].time));
}
/分配数据/
var data={
categoryList:categoryList,articleList:articleList,cid:cid,nextPage:nextPage==0 ? 1 : nextPage,prePage:prePage,allArticleTime:newArticleTime,currentPage:currentPage
};/*渲染模板*/ res.render("home/index",data);
});
});
});});
}
};