我正在尝试在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的文档,但找不到我做错的地方。帮我解决这个问题。谢谢。
答案 0 :(得分:2)
您的通话返回的是雄辩的收藏,而不是单一的结果,因此不持有$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)
);
}