定制 spatie/laravel-json-api-paginate 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

spatie/laravel-json-api-paginate

Composer 安装命令:

composer require spatie/laravel-json-api-paginate

包简介

A paginator that plays nice with the JSON API spec

README 文档

README

Latest Version on Packagist Check & fix styling Total Downloads

In a vanilla Laravel application the query builder paginators will listen to page request parameter. This works great, but it does not follow the example solution of the json:api spec. That example expects the query builder paginator to listen to the page[number] and page[size] request parameters.

This package adds a jsonPaginate method to the Eloquent query builder that listens to those parameters and adds the pagination links the spec requires.

Support us

We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.

Installation

You can install the package via composer:

composer require spatie/laravel-json-api-paginate

In Laravel 5.5 and above the service provider will automatically get registered. In older versions of the framework just add the service provider in config/app.php file:

'providers' => [
    ...
    Spatie\JsonApiPaginate\JsonApiPaginateServiceProvider::class,
];

Optionally you can publish the config file with:

php artisan vendor:publish --provider="Spatie\JsonApiPaginate\JsonApiPaginateServiceProvider" --tag="config"

This is the content of the file that will be published in config/json-api-paginate.php

<?php

return [

    /*
     * The maximum number of results that will be returned
     * when using the JSON API paginator.
     */
    'max_results' => 30,

    /*
     * The default number of results that will be returned
     * when using the JSON API paginator.
     */
    'default_size' => 30,

    /*
     * The key of the page[x] query string parameter for page number.
     */
    'number_parameter' => 'number',

    /*
     * The key of the page[x] query string parameter for page size.
     */
    'size_parameter' => 'size',

    /*
     * The key of the page[x] query string parameter for cursor.
     */
    'cursor_parameter' => 'cursor',

    /*
     * The name of the macro that is added to the Eloquent query builder.
     */
    'method_name' => 'jsonPaginate',

    /*
     * If you only need to display Next and Previous links, you may use
     * simple pagination to perform a more efficient query.
     */
    'use_simple_pagination' => false,

    /*
     * If you want to use cursor pagination, set this to true.
     * This would override use_simple_pagination.
     */
    'use_cursor_pagination' => false,

    /*
     * use simpleFastPaginate() or fastPaginate from https://github.com/aarondfrancis/fast-paginate
     * use may installed it via `composer require aaronfrancis/fast-paginate`
     */
    'use_fast_pagination' => false,

    /*
     * The name of the query parameter used for pagination
     */
    'pagination_parameter' => 'page',
];

Usage

To paginate the results according to the json API spec, simply call the jsonPaginate method.

YourModel::jsonPaginate();

Of course you may still use all the builder methods you know and love:

YourModel::where('my_field', 'myValue')->jsonPaginate();

You can also paginate results for relations:

$model = YourModel::find(1);

$model->relation()->jsonPaginate();

Override default behavior

By default the maximum page size is set to 30. You can change this number in the config file or just pass the value to jsonPaginate.

$maxResults = 60;

YourModel::jsonPaginate($maxResults);

By default the default page size is set to 30. You can change this number in the config file or just pass the value to jsonPaginate.

$defaultSize = 15;

YourModel::jsonPaginate(null, $defaultSize);

You can also pass the total count to the paginate function directly. This can be useful for performance reasons or to prevent issues with DISTINCT keyword (more info).

⚠️ This is effective only with basic pagination (no effect with cursor, simple or fast pagination)

$total = 42;

YourModel::jsonPaginate(null, null, $total);

Cursor pagination

This package also supports cursor pagination, which can be briefly defined by the Laravel Framework as follows:

While paginate and simplePaginate create queries using the SQL "offset" clause, cursor pagination works by constructing "where" clauses that compare the values of the ordered columns contained in the query, providing the most efficient database performance available amongst all of Laravel's pagination methods.

You can find more about cursor pagination in the Laravel Documentation.

If you want to use cursor pagination, you can set the use_cursor_pagination to true in the config file.

It's also possible to modify the pagination parameter in the config file, by modifying the cursor_parameter value.

<?php

return [
    // ..... other config options .....

    /*
     * The key of the page[x] query string parameter for cursor.
     */
    'cursor_parameter' => 'cursor',

    /*
     * If you want to cursor pagination, set this to true.
     * This would override use_simple_pagination.
     */
    'use_cursor_pagination' => true,

    // ..... other config options .....
];

IDE Support

This package includes IDE helper stubs that provide autocompletion and type hints for the jsonPaginate() method in PhpStorm, VSCode (with Intelephense), and other modern PHP IDEs.

After installing the package, your IDE will automatically recognize the jsonPaginate() method on Eloquent models, query builders, and relationships. The method signature includes proper type hints for all parameters and return types.

If you've configured a custom method name using the method_name config option, you may need to create custom IDE hints for your specific method name. The included _ide_helper.php file can serve as a reference for this purpose.

Changelog

Please see CHANGELOG for more information what has changed recently.

Upgrading from v3.x to v4.x

Breaking Change: base_url Config Removed

The base_url configuration option has been removed due to a design flaw where it would completely overwrite the request path, causing all pagination URLs to lose their resource-specific paths.

Before (v3.x - BROKEN for multi-endpoint APIs):

// config/json-api-paginate.php
'base_url' => 'https://example.com',

// Result: /api/users becomes https://example.com?page=2 (lost path!)
// Result: /api/posts becomes https://example.com?page=2 (same URL!)

After (v4.x - Use Laravel's native solution):

// app/Providers/AppServiceProvider.php
public function boot()
{
    // Force HTTPS for all URLs
    \Illuminate\Support\Facades\URL::forceScheme('https');

    // Or force both scheme and domain (behind proxies/load balancers)
    \Illuminate\Support\Facades\URL::forceRootUrl('https://example.com');
}

This approach correctly preserves request paths while controlling the scheme and domain:

  • /api/usershttps://example.com/api/users?page=2
  • /api/postshttps://example.com/api/posts?page=2

Why was this removed?

The base_url option used Laravel's setPath() method which completely replaces the pagination path. In real-world applications with multiple endpoints, this caused all resources to generate identical pagination URLs, breaking pagination for all but one endpoint.

For more context, see GitHub Discussion #53.

Testing

composer test

Contributing

Please see CONTRIBUTING for details.

Security

If you've found a bug regarding security please mail security@spatie.be instead of using the issue tracker.

Credits

The base code of this page was published on this Laracasts forum thread by Joram van den Boezem

License

The MIT License (MIT). Please see License File for more information.

spatie/laravel-json-api-paginate 适用场景与选型建议

spatie/laravel-json-api-paginate 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5.09M 次下载、GitHub Stars 达 635, 最近一次更新时间为 2017 年 06 月 14 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「spatie」 「laravel-json-api-paginate」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 spatie/laravel-json-api-paginate 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 spatie/laravel-json-api-paginate 我们能提供哪些服务?
定制开发 / 二次开发

基于 spatie/laravel-json-api-paginate 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 5.09M
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 641
  • 点击次数: 21
  • 依赖项目数: 57
  • 推荐数: 1

GitHub 信息

  • Stars: 635
  • Watchers: 5
  • Forks: 46
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-06-14