我想要这个:
- 集合
'title' => $this->title
在没有枢轴的情况下加载时返回 - 一个集合
title => $this->pivot->title . "Hello World"
在加载了数据透视表时返回。
这是我的方法:
namespace App\Http\Resources;
use App\Item;
use Illuminate\Http\Resources\Json\JsonResource;
class ItemResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
*
* @return array
*/
public function toArray($request)
{
return [
'id' => $this->id,
'title' => $this->whenPivotLoaded('item_groups_attribute',
function () {
return $this->pivot->title . "Hello";
}), // but how to add $this->title, if it's not with pivot?
];
}
}
如果我尝试这样的事情:
'title' => $this->whenPivotLoaded('item_groups_attribute',
function () {
return $this->pivot->title . "Hello";
}) ?: $this->title,
这不起作用,因为结果是
没有枢轴(标题不会出现在字段中):
{
"data": {
"id": 2
}
}
如果加载了 pivot ,这是响应:
{
"data": {
"id": 5,
"title": "Test"
}
}