Coder Social home page Coder Social logo

Comments (9)

jiannei avatar jiannei commented on June 14, 2024

可以举个例子吗,比如自定义前是哪些参数,自定义后希望保留哪些参数

from laravel-response.

sym134 avatar sym134 commented on June 14, 2024

一般来说api 只要data、分页总数、当前页码就够了,当然也有部分可能需要每页行数,所以我想着应该可以自定义这部分,
我是目前写了个中间件解决了😄

from laravel-response.

jiannei avatar jiannei commented on June 14, 2024

一般来说api 只要data、分页总数、当前页码就够了,当然也有部分可能需要每页行数,所以我想着应该可以自定义这部分,
我是目前写了个中间件解决了😄

通过中间件把响应数据中的字段 unset 掉吗

from laravel-response.

sym134 avatar sym134 commented on June 14, 2024

一般来说api 只要data、分页总数、当前页码就够了,当然也有部分可能需要每页行数,所以我想着应该可以自定义这部分,
我是目前写了个中间件解决了😄

通过中间件把响应数据中的字段 unset 掉吗

这个对于您这个组件应该比较好操作吧,我的想法是配置文件里面数组填入要保留的字段,然后响应数据那里判断保留,当然大佬有更好的办法也可以😄

from laravel-response.

sym134 avatar sym134 commented on June 14, 2024

一般来说api 只要data、分页总数、当前页码就够了,当然也有部分可能需要每页行数,所以我想着应该可以自定义这部分,
我是目前写了个中间件解决了😄

通过中间件把响应数据中的字段 unset 掉吗

还有个情况,反馈一下,我看您的教程是不需要return的,但success和fail都需要return才行,

from laravel-response.

jiannei avatar jiannei commented on June 14, 2024

我也是这个想法,目前配置文件已经增加了返回字段的配置

 // Set the structure of the response data
    'format' => [
        'fields' => [
            'status' => ['alias' => 'status', 'show' => true],
            'code' => ['alias' => 'code', 'show' => true],
            'message' => ['alias' => 'message', 'show' => true],
            'error' => ['alias' => 'error', 'show' => true],
            'data' => [
                'alias' => 'data',
                'show' => true,

                // When data is nested with data, such as returning paged data, you can also set an alias for the inner data
                'data' => [
                    'alias' => 'data', // data/rows/list
                ],
            ],
        ],
    ],

from laravel-response.

sym134 avatar sym134 commented on June 14, 2024

我也是这个想法,目前配置文件已经增加了返回字段的配置

 // Set the structure of the response data
    'format' => [
        'fields' => [
            'status' => ['alias' => 'status', 'show' => true],
            'code' => ['alias' => 'code', 'show' => true],
            'message' => ['alias' => 'message', 'show' => true],
            'error' => ['alias' => 'error', 'show' => true],
            'data' => [
                'alias' => 'data',
                'show' => true,

                // When data is nested with data, such as returning paged data, you can also set an alias for the inner data
                'data' => [
                    'alias' => 'data', // data/rows/list
                ],
            ],
        ],
    ],

帅气👍🏻

from laravel-response.

jiannei avatar jiannei commented on June 14, 2024

还有个情况,反馈一下,我看您的教程是不需要return的,但success和fail都需要return才行,

这个问题新开 issue ,提供下复现步骤。

from laravel-response.

jiannei avatar jiannei commented on June 14, 2024

已支持:https://github.com/Jiannei/laravel-response/releases/tag/v4.0.0 😎

from laravel-response.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.