<legend id='mb8Zq'><style id='mb8Zq'><dir id='mb8Zq'><q id='mb8Zq'></q></dir></style></legend>

        <bdo id='mb8Zq'></bdo><ul id='mb8Zq'></ul>
      <tfoot id='mb8Zq'></tfoot>

    1. <i id='mb8Zq'><tr id='mb8Zq'><dt id='mb8Zq'><q id='mb8Zq'><span id='mb8Zq'><b id='mb8Zq'><form id='mb8Zq'><ins id='mb8Zq'></ins><ul id='mb8Zq'></ul><sub id='mb8Zq'></sub></form><legend id='mb8Zq'></legend><bdo id='mb8Zq'><pre id='mb8Zq'><center id='mb8Zq'></center></pre></bdo></b><th id='mb8Zq'></th></span></q></dt></tr></i><div id='mb8Zq'><tfoot id='mb8Zq'></tfoot><dl id='mb8Zq'><fieldset id='mb8Zq'></fieldset></dl></div>
    2. <small id='mb8Zq'></small><noframes id='mb8Zq'>

      json 资源和 json 资源有什么区别?资源收集?在 La

      时间:2023-09-22

      <legend id='2GLsC'><style id='2GLsC'><dir id='2GLsC'><q id='2GLsC'></q></dir></style></legend>
    3. <tfoot id='2GLsC'></tfoot>

      <small id='2GLsC'></small><noframes id='2GLsC'>

          <tbody id='2GLsC'></tbody>
          <bdo id='2GLsC'></bdo><ul id='2GLsC'></ul>
        • <i id='2GLsC'><tr id='2GLsC'><dt id='2GLsC'><q id='2GLsC'><span id='2GLsC'><b id='2GLsC'><form id='2GLsC'><ins id='2GLsC'></ins><ul id='2GLsC'></ul><sub id='2GLsC'></sub></form><legend id='2GLsC'></legend><bdo id='2GLsC'><pre id='2GLsC'><center id='2GLsC'></center></pre></bdo></b><th id='2GLsC'></th></span></q></dt></tr></i><div id='2GLsC'><tfoot id='2GLsC'></tfoot><dl id='2GLsC'><fieldset id='2GLsC'></fieldset></dl></div>
                本文介绍了json 资源和 json 资源有什么区别?资源收集?在 Laravel的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                谁能解释一下 ResourceCollection 和 JsonResource 之间的区别?

                Can someone explain the difference between a ResourceCollection and JsonResource?

                在 Laravel 6 文档中,您可以生成 2 种不同类型的资源……ResourceCollection 和 JsonResource.https://laravel.com/docs/6.x/eloquent-resources#resource-responses

                In Laravel 6 docs you can generate 2 different types of resources... ResourceCollection and JsonResource. https://laravel.com/docs/6.x/eloquent-resources#resource-responses

                <?php
                
                namespace AppHttpResources;
                
                use IlluminateHttpResourcesJsonResourceCollection;
                
                class ShopCollection extends ResourceCollection
                {
                    /**
                     * Transform the resource collection into an array.
                     *
                     * @param  IlluminateHttpRequest  $request
                     * @return array
                     */
                    public function toArray($request)
                    {
                        return parent::toArray($request);
                    }
                }
                
                

                对...

                <?php
                
                namespace AppHttpResources;
                
                use IlluminateHttpResourcesJsonJsonResource;
                
                class Shop extends JsonResource
                {
                    /**
                     * Transform the resource into an array.
                     *
                     * @param  IlluminateHttpRequest  $request
                     * @return array
                     */
                    public function toArray($request)
                    {
                        return parent::toArray($request);
                    }
                }
                

                推荐答案

                当你将单个模型转换为 json 时,即为 json 资源,当你将模型集合转换为 json 时,即为资源集合.

                When you are converting a single model to json, that is a json resource, when you are converting a collection of model to json, that is resource collection.

                简单来说,如果您要返回资源集合或作为集合的分页响应.

                simply If you are returning a collection of resources or a paginated response that is a collection.

                请参阅文档

                要生成转换单个模型的资源,您可以生成负责转换集合的资源模型.这允许您的响应包含链接和其他元与给定的整个集合相关的信息资源.

                to generating resources that transform individual models, you may generate resources that are responsible for transforming collections of models. This allows your response to include links and other meta information that is relevant to an entire collection of a given resource.

                这篇关于json 资源和 json 资源有什么区别?资源收集?在 Laravel的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:Hash::make('password') 在每次调用时返回不同的 下一篇:未定义的表:7 错误:关系“费用";不存在

                相关文章

                最新文章

                <small id='zSp6c'></small><noframes id='zSp6c'>

              • <i id='zSp6c'><tr id='zSp6c'><dt id='zSp6c'><q id='zSp6c'><span id='zSp6c'><b id='zSp6c'><form id='zSp6c'><ins id='zSp6c'></ins><ul id='zSp6c'></ul><sub id='zSp6c'></sub></form><legend id='zSp6c'></legend><bdo id='zSp6c'><pre id='zSp6c'><center id='zSp6c'></center></pre></bdo></b><th id='zSp6c'></th></span></q></dt></tr></i><div id='zSp6c'><tfoot id='zSp6c'></tfoot><dl id='zSp6c'><fieldset id='zSp6c'></fieldset></dl></div>
                  <tfoot id='zSp6c'></tfoot>

                    <bdo id='zSp6c'></bdo><ul id='zSp6c'></ul>
                  1. <legend id='zSp6c'><style id='zSp6c'><dir id='zSp6c'><q id='zSp6c'></q></dir></style></legend>