真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

nodejs中如何實(shí)現(xiàn)數(shù)據(jù)分頁

小編給大家分享一下nodejs中如何實(shí)現(xiàn)數(shù)據(jù)分頁,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

站在用戶的角度思考問題,與客戶深入溝通,找到正定網(wǎng)站設(shè)計與正定網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗(yàn)好的作品,建站類型包括:網(wǎng)站設(shè)計制作、網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、主機(jī)域名、虛擬空間、企業(yè)郵箱。業(yè)務(wù)覆蓋正定地區(qū)。

具體內(nèi)容如下

控制器路由定義

首頁路由:http://localhost:8888/

首頁分頁路由:http://localhost:8888/index/2

/**
* 首頁控制器
*/
var router=express.Router();
/*每頁條數(shù)*/
var pageSize=4;
/*首頁*/ 
router.get('/',function(req,res,next){
 var cid=0;
 F.model("article").assignIndexData(cid,1,pageSize,res);
});
/*首頁分頁*/
router.get('/index/:page',function(req,res,next){
 var currentPage=parseInt(req.params.page);
 var cid=0;
 F.model("article").assignIndexData(cid,currentPage,pageSize,res);
});

分類列表分頁路由:http://localhost:8888/category/分類id/分頁

/*分類頁*/
router.get('/category/:cid/:page',function(req,res,next){
 var cid=req.params.cid;
 var currentPage=parseInt(req.params.page);
 F.model("article").assignIndexData(cid,currentPage,pageSize,res);
});

模型數(shù)據(jù)部分

控制器調(diào)用article模型的assignIndexData()方法,參數(shù):分類id,當(dāng)前頁,每頁條數(shù),響應(yīng)對象

調(diào)用category模型的getAllList()方法得到分類list,參數(shù):回調(diào)函數(shù)

調(diào)用article模型的getCount()方法得到總條數(shù),參數(shù):分類id,回調(diào)函數(shù)

調(diào)用article模型的getArticlePager()方法得到文章對象的數(shù)據(jù)list,參數(shù):分類id,當(dāng)前頁,每頁條數(shù),回調(diào)函數(shù)

對上一頁,下一頁進(jìn)行-1和+1,并進(jìn)行判斷,上一頁應(yīng)大于0,下一頁應(yīng)小于等于總頁數(shù)(總條數(shù)/每頁條數(shù) 向上取整)

把數(shù)據(jù)分配到模板上

/**
* 文章模型文件
*/
module.exports={
 /*獲取條數(shù)*/
 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);
 },
 /*獲取分頁數(shù)據(jù)*/
 getArticlePager:function(categoryId,currentPage,pageSize,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,callback);
 },
 /*歸檔*/
 getArchives:function(callback){
  db.query("select time from article order by time desc",callback);
 },
 /*分配首頁數(shù)據(jù)*/
 assignIndexData:function(cid,currentPage,pageSize,res){
  var categoryModel=F.model("category");
  var articleModel=this;
  // 分類數(shù)據(jù)
  categoryModel.getAllList(function(err,categoryList){
   // 文章條數(shù)
   articleModel.getCount(cid,function(err,nums){
    // 文章分頁
    articleModel.getArticlePager(cid,currentPage,pageSize,function(err,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

模板部分

效果圖:

nodejs中如何實(shí)現(xiàn)數(shù)據(jù)分頁

nodejs中如何實(shí)現(xiàn)數(shù)據(jù)分頁

以上是“nodejs中如何實(shí)現(xiàn)數(shù)據(jù)分頁”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


文章題目:nodejs中如何實(shí)現(xiàn)數(shù)據(jù)分頁
本文網(wǎng)址:http://weahome.cn/article/gssdoj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部