18

我想知道是否可以为项目资源和集合资源定义不同的数据。

对于收藏,我只想发送['id', 'title', 'slug'],但项目资源将包含额外的详细信息['id', 'title', 'slug', 'user', etc.]

我想实现类似:

class PageResource extends Resource
{
    /**
     * Transform the resource into an array.
     *
     * @param  \Illuminate\Http\Request
     * @return array
     */
    public function toArray($request)
    {
        return [
            'id' => $this->id,
            'title' => $this->title,
            'slug' => $this->slug,
            'user' => [
                'id' => $this->user->id,
                'name' => $this->user->name,
                'email' => $this->user->email,
            ],
        ];
    }
}

class PageResourceCollection extends ResourceCollection
{
    /**
     * Transform the resource collection into an array.
     *
     * @param  \Illuminate\Http\Request
     * @return array
     */
    public function toArray($request)
    {
        return [
            'id' => $this->id,
            'title' => $this->title,
            'slug' => $this->slug,
        ];
    }
}

PageResourceCollection将无法按预期工作,因为它使用PageResource所以它需要

return [
            'data' => $this->collection,
       ];

我可以将资源复制到PageFullResource/PageListResourcePageFullResourceCollection/PageListResourceCollection但我试图找到一种更好的方法来实现相同的结果。

4

3 回答 3

33

Resource 类上有一个集合方法。您可以将其作为 ResourceCollection 的参数输入返回,然后在集合上指定您的转换。

控制器:

class PageController extends Controller
{
    public function index()
    {
        return new PageResourceCollection(PageResource::collection(Page::all()));
    }

    public function show(Page $page)
    {
        return new PageResource($page);
    }
}

资源:

class PageResource extends Resource
{
    public function toArray($request)
    {
        return [
            'id' => $this->id,
            'title' => $this->title,
            'slug' => $this->slug,
            'user' => [
                'id' => $this->user->id,
                'name' => $this->user->name,
                'email' => $this->user->email,
            ],
        ];
    }
}

class PageResourceCollection extends ResourceCollection
{
    public function toArray($request)
    {
        return [
            'data' => $this->collection->transform(function($page){
                return [
                    'id' => $page->id,
                    'title' => $page->title,
                    'slug' => $page->slug,
                ];
            }),
        ];
    }
}
于 2017-09-25T20:01:03.370 回答
4

如果您希望响应字段在 Resource 和 Collection 中具有相同的值,则可以在 Collection 中重用 Resource

个人资源.php

<?php

namespace App\Http\Resources;

use Illuminate\Http\Resources\Json\Resource;

class PersonResource extends Resource
{
    /**
     * Transform the resource into an array.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    public function toArray($request)
    {
//        return parent::toArray($request);

        return [
            'id' => $this->id,
            'person_type' => $this->person_type,
            'first_name' => $this->first_name,
            'last_name' => $this->last_name,
            'created_at' => (string) $this->created_at,
            'updated_at' => (string) $this->updated_at,
        ];
    }
}

PersonCollection.php

<?php

namespace App\Http\Resources;

use Illuminate\Http\Resources\Json\ResourceCollection;

class PersonCollection extends ResourceCollection
{
    /**
     * Transform the resource collection into an array.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Resources\Json\AnonymousResourceCollection
     */
    public function toArray($request)
    {
//        return parent::toArray($request);
        return PersonResource::collection($this->collection);
    }
}
于 2018-07-11T13:57:41.620 回答
2

如果您对使用链接和元数据不感兴趣,则接受的答案有效。如果需要,只需返回:

return new PageResourceCollection(Page::paginate(10));

在您的控制器中。您还应该在传递到资源集合之前急切加载其他依赖关系。

于 2018-01-29T14:38:40.183 回答