0

我的代码是:

     $this->model
        ->whereId($id)
        ->with('userRegion.region')
        ->first();

回应是

    "id": xx,
    "first_name": "sahil",
    "last_name": "gupta",
    "email": "xxxx@yopmail.com",
    "role_id": 0,
    "user_region":[] 

但我想重命名或创建user_regionas的别名,regions然后它应该如下所示:

        "id": xx,
        "first_name": "sahil",
        "last_name": "gupta",
        "email": "xxxx@yopmail.com",
        "role_id": 0,
        "regions":[] 

我试过了:

      $this->model
        ->whereId($id)
        ->with('userRegion.region as regions')
        ->first();

或者

       $this->model
            ->whereId($id)
            ->with(['userRegion as regions','userRegion.region'])
            ->first();

但是他们两个解决方案都不起作用并抛出错误。

4

1 回答 1

1

如果要使用与 name 的关系regions,只需将关系方法的名称定义为regions

public function regions() {
    return $this->hasMany(...);
}

所以你可以使用$this->model->whereId($id)->with('regions.region'). 响应将是:

        "id": xx,
        "first_name": "sahil",
        "last_name": "gupta",
        "email": "xxxx@yopmail.com",
        "role_id": 0,
        "regions":[....] 

并且可以保留原有的userRegion关系方式,所以with('userRegions.region')在其他情况下仍然可以使用。区域方法调用关系方法:

public function regions() {
    return $this->userRegion();
}

另一种解决方案:

通过API 资源重置userRegionsregions

    public function toArray($request)
    {
        return [
            'id' => $this->id,
            'first_name' => $this->first_name,
            'last_name' => $this->last_name,
            'role_id' => $this->role_id,
            'regions' => RegionResource::collection($this->userRegions),
            ...
        ];
    }
于 2020-05-01T13:03:02.427 回答