ホームページ > 記事 > ウェブフロントエンド > nodejsページングクラスコードsharing_node.js
ページネーションクラス、plugin/Paginate.js に置きました
return (this.maxpage-1)*this.pagesize;
}
return first;現在のページ上のアイテムの最大数
*/
Paginate.prototype.last = function(){
var last = this.first() this.pagesize;
if(last>this .total ){
return this.total;
}
return last;
}
/**
* 前のページ
* @returns {number}
*/
Paginate.prototype.prev = function(){
if(this.page return false;
}
}
/**
* 次のページ
* @returns {*}
*/
Paginate.prototype.next = function(){
if(this.page >= this.maxpage){
return false;
}
}
module.exports = Paginate;
使用例
コードをコピー
コードは次のとおりです。