dimmir/paginator-bundle
Composer 安装命令:
composer require dimmir/paginator-bundle
包简介
Flexible pagination bundle for Symfony 3. Created for use on the REST API
README 文档
README
Flexible pagination bundle for Symfony 3. This bundle provides an easy way to add pagination support to the collection of your API. It easy used with FOSRestBundle
Installation:
You can install this bundle using composer:
composer require dimmir/paginator-bundle
Add the bundle to your AppKernel.php file:
// app/AppKernel.php public function registerBundles() { return array( // ... new DMR\Bundle\PaginatorBundle\PaginatorBundle(), // ... ); }
Configuration
dmr_paginator: items_per_page: 25 # default number items per page max_items_per_page: ~ # The maximum number of items per page. page_request_parameter_name: page # The name of current page for query parameter client_items_per_page: false # To allow the client to set the number of items per page. items_per_page_request_parameter_name: itemsPerPage # The name of items per page query parameter options: # options fo Paginator fetch_join_collection: true # The option fetchJoinCollection for Doctrine ORM Paginator
Usage
Currently paginator can paginate:
Doctrine\ORM\QueryBuilder
Example for used with FOSRestBundle:
// AppBundle\Controller\UserController.php /** * @View() */ public function cgetAction (Request $request) { $queryBuilder = $this->getDoctrine()->getManager() ->getRepository('AppBundle:User')->createQueryBuilder('u'); $paginator = $this->get('dmr_paginator.service')->pagination($queryBuilder); return new SliderRepresentation($paginator); }
Representations
DMR\Bundle\PaginatorBundle\Representation\CollectionRepresentation:
{
"items": [
{
"id": 1,
},
],
"pagination": {
"page": 1,
"itemsPerPage": 25,
"totalItemsCount": 40,
"pagesCount": 2
}
}
DMR\Bundle\PaginatorBundle\Representation\SliderRepresentation:
{
"items": [
{
"id": 1,
},
],
"previus": 1,
"next": 3
}
dimmir/paginator-bundle 适用场景与选型建议
dimmir/paginator-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 29 次下载、GitHub Stars 达 1, 最近一次更新时间为 2017 年 05 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「page」 「rest」 「api」 「pager」 「paginator」 「pagination」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 dimmir/paginator-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 dimmir/paginator-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 dimmir/paginator-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, which will add advanced interaction controls to any HTML table.
Plug-ins for DataTables
This package helps you use bitwise enums in PHP and Laravel.
A PSR-7 compatible library for making CRUD API endpoints
Api bundle
Display page number links in Twig or PHP templates.
统计信息
- 总下载量: 29
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-05-22