在 Eloquent 资源中使用分页会在 Laravel 中引发 Undefined Property $id 错误

Posted

技术标签:

【中文标题】在 Eloquent 资源中使用分页会在 Laravel 中引发 Undefined Property $id 错误【英文标题】:Using pagination in Eloquent resource throws Undefined Property $id error in Laravel 【发布时间】:2019-05-29 10:19:24 【问题描述】:

我正在尝试在 Laravel 5.7 中构建一个应用程序,其中我有一个名为 CompanyBehaviour 的模型:

protected $table = 'company_behaviour';

protected $guarded= [];

public function companies()

    return $this->belongsTo('Noetic\Plugins\Conxn\Models\Company','company_id','id');


public function companyRole()

    return $this->belongsTo('Noetic\Plugins\Conxn\Models\Variables\Company\Role', 'company_role_id', 'id');


public function companySpecialisation()

    return $this->belongsTo('Noetic\Plugins\Conxn\Models\Variables\Company\Role', 'company_specialisation_id', 'id');

我有一个资源文件:

class CompanyBehaviourResource extends JsonResource

    /**
     * Transform the resource into an array.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    public function toArray($request)
    
        return [
            'id' => $this->id,
            'company' => $this->company->name,
            'company_role' => $this->companyRole->name,
            'company_specialisation' => $this->companySpecialisation->name,
        ];
    

在我的控制器中获取数据时我需要使用它:

public function index(Request $request)


    return new CompanyBehaviourResource(CompanyBehaviour::whereHas('companies', function ($q) use($request) 
        $q->where('name', 'like', '%'.$request->search.'%');
    )->orderBy('created_at', 'desc')
        ->paginate(20)
    );

但是当我调用这个时,我得到了分页错误:

未定义属性:Illuminate\Pagination\LengthAwarePaginator::$id

而迹线表示:

class: "Illuminate\Http\Resources\Json\JsonResource"
file: "D:\~Resource\CompanyBehaviourResource.php"
function: "__get"
line: 17
type: "->"

说明'id' => $this->id, 这一行。我已经浏览了Laravel Resource API 的文档,我找不到我做错的地方。帮我解决这个问题。谢谢。

【问题讨论】:

您需要从请求中检索您的 id @niklaz 你是什么意思?我的请求不包含任何 id,它只包含搜索字符串。 抱歉,我应该仔细看看。这意味着您的 eloquent 调用不会返回包含“id”属性的对象。 我也有这个错误。我没有使用集合,而是使用了资源。 【参考方案1】:

您的调用返回 eloquent 集合,而不是单个结果,因此不包含 $id 属性。 您应该改为调用收集方法:

public function index(Request $request)


    return new CompanyBehaviourResource::collection(CompanyBehaviour::whereHas('companies', function ($q) use($request) 
        $q->where('name', 'like', '%'.$request->search.'%');
    )->orderBy('created_at', 'desc')
        ->paginate(20)
    );

【讨论】:

@NitishKumar,尝试调试对象,根据你提供的模型,我认为你应该使用companies而不是company

以上是关于在 Eloquent 资源中使用分页会在 Laravel 中引发 Undefined Property $id 错误的主要内容,如果未能解决你的问题,请参考以下文章

坑,MySQL中 order by 与 limit 混用,分页会出现问题!

启用服务器过滤、排序、分页会中断 MVC Kendo UI 网格的 SignalR 客户端更新

Laravel 4:Eloquent::find() 不起作用

Elasticsearch聚合后分页深入详解

Eloquent - 按月、年和分页分组

使用 Eloquent ORM 使用 Twig 视图进行 Slim 3 分页