mpages
v1.2.9
Published
* mpages Common enterprise modules of MySQL
Downloads
3
Readme
Introduction
- mpages Common enterprise modules of MySQL
Installation
- NPM install mpages
Node uses
var p=require("mpages");
Getting Paging Content:
p.getPaging(mysqlcon,"select * from dbName",pageSize,pageBtnNum,currentPage,function(data){
res.send(data);
});
Get the previous page and the next page
p.getSiblings(mysqlcon,"dbName","column","columnValue","asc|desc",function(data){
res.send(data);
});