0.1.1 • Published 3 years ago

egg-pagination v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

egg-pagination

NPM version Test coverage Known Vulnerabilities

Parse pagination data from query parameters.

Install

$ npm i egg-pagination --save

Usage

// {app_root}/config/plugin.js
exports.pagination = {
  enable: true,
  package: 'egg-pagination',
};

Configuration

// {app_root}/config/config.default.js
exports.pagination = {
  pageSize: 10,
  maxPageSize: 50,
};

Example

  const pagination = this.ctx.request.pagination();
  const { page, pageSize, offset } = pagination;

Questions & Suggestions

Please open an issue here.

License

MIT