@4geit/swg-paginate-helper 中文文档教程
@4geit/swg-paginate-helper
包装函数为返回项目列表的端点启用分页
Installation
- A recommended way to install @4geit/swg-paginate-helper is through npm package manager using the following command:
npm i @4geit/swg-paginate-helper --save
或者使用 yarn
使用以下命令:
yarn add @4geit/swg-paginate-helper
- All you have to do is to import the
@4geit/swg-paginate-helper
package in your controller or mock file as below:
// ...
const swgPaginateHelper = require('@4geit/swg-paginate-helper')
// ...
并将它与您的端点控制器之一一起使用,如下所示:
// ...
module.exports = {
// ...
getItems: swgPaginateHelper(
({ req, res, paginatedArr }) => {
// ...
}
),
// ...
}
@4geit/swg-paginate-helper
wrapper function to enable pagination for an endpoint that returns a list of items
Installation
- A recommended way to install @4geit/swg-paginate-helper is through npm package manager using the following command:
npm i @4geit/swg-paginate-helper --save
Or use yarn
using the following command:
yarn add @4geit/swg-paginate-helper
- All you have to do is to import the
@4geit/swg-paginate-helper
package in your controller or mock file as below:
// ...
const swgPaginateHelper = require('@4geit/swg-paginate-helper')
// ...
And use it with one of your endpoint controller as below:
// ...
module.exports = {
// ...
getItems: swgPaginateHelper(
({ req, res, paginatedArr }) => {
// ...
}
),
// ...
}
更多
你可能也喜欢
- 414to750 中文文档教程
- @0xcert/web3-asset-ledger 中文文档教程
- @10yun/cv-webpack-utils 中文文档教程
- @8devices/restserver-api 中文文档教程
- @_nu/vue-dialog 中文文档教程
- @aacassandra/ivue-tsp-controller 中文文档教程
- @acpaas-ui-widgets/ngx-notification-widget 中文文档教程
- @activimetrics/utils-composite 中文文档教程
- @activitypods/synchronizer 中文文档教程
- @actualwave/promised-timeout 中文文档教程