Laravel - 如何递归地将 API 资源转换为数组?
Laravel - How to convert API Resource to array recursively?
我正在使用 Laravel API Resource 并希望将实例的所有部分转换为数组。
在我的 PreorderResource.php
:
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request
* @return array
*/
public function toArray($request)
{
return [
'id' => $this->id,
'exception' => $this->exception,
'failed_at' => $this->failed_at,
'driver' => new DriverResource(
$this->whenLoaded('driver')
)
];
}
然后解析:
$resolved = (new PreorderResource(
$preorder->load('driver')
))->resolve();
乍一看,resolve 方法适合它,但问题是它不能递归工作。我的资源解析如下:
array:3 [
"id" => 8
"exception" => null
"failed_at" => null
"driver" => Modules\User\Transformers\DriverResource {#1359}
]
如何递归地将 API 资源解析为数组?
通常,你应该这样做:
Route::get('/some-url', function() {
$preorder = Preorder::find(1);
return new PreorderResource($preorder->load('driver'))
});
因为这是应该使用响应的方式(当然你可以从你的控制器上做)。
但是,如果出于任何原因您想手动执行此操作,您可以执行以下操作:
Route::get('/some-url', function() {
$preorder = Preorder::find(1);
$jsonResponse = (new PreorderResource($preorder->load('driver')))->toResponse(app('request'));
echo $jsonResponse->getData();
});
我不确定这是否正是您想要的效果,但如果需要,您还可以从 $jsonResponse
获得其他信息。 ->getData()
的结果是对象。
您还可以使用:
echo $jsonResponse->getContent();
如果你只需要获取字符串
迟到的答案,你也可以选择:
Route::get('/some-url', function() {
$preorder = Preorder::find(1);
$jsonResponse = json_decode(json_encode(new PreorderResource($preorder->load('driver'))));
echo $jsonResponse;
});
如果您只需要数组字符串,您可以删除外部 json_decode
.
最简单的方法是生成 json 并转换回数组。
$resource = new ModelResource($model);
$array = json_decode($resource->toJson(), true);
我正在使用 Laravel API Resource 并希望将实例的所有部分转换为数组。
在我的 PreorderResource.php
:
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request
* @return array
*/
public function toArray($request)
{
return [
'id' => $this->id,
'exception' => $this->exception,
'failed_at' => $this->failed_at,
'driver' => new DriverResource(
$this->whenLoaded('driver')
)
];
}
然后解析:
$resolved = (new PreorderResource(
$preorder->load('driver')
))->resolve();
乍一看,resolve 方法适合它,但问题是它不能递归工作。我的资源解析如下:
array:3 [
"id" => 8
"exception" => null
"failed_at" => null
"driver" => Modules\User\Transformers\DriverResource {#1359}
]
如何递归地将 API 资源解析为数组?
通常,你应该这样做:
Route::get('/some-url', function() {
$preorder = Preorder::find(1);
return new PreorderResource($preorder->load('driver'))
});
因为这是应该使用响应的方式(当然你可以从你的控制器上做)。
但是,如果出于任何原因您想手动执行此操作,您可以执行以下操作:
Route::get('/some-url', function() {
$preorder = Preorder::find(1);
$jsonResponse = (new PreorderResource($preorder->load('driver')))->toResponse(app('request'));
echo $jsonResponse->getData();
});
我不确定这是否正是您想要的效果,但如果需要,您还可以从 $jsonResponse
获得其他信息。 ->getData()
的结果是对象。
您还可以使用:
echo $jsonResponse->getContent();
如果你只需要获取字符串
迟到的答案,你也可以选择:
Route::get('/some-url', function() {
$preorder = Preorder::find(1);
$jsonResponse = json_decode(json_encode(new PreorderResource($preorder->load('driver'))));
echo $jsonResponse;
});
如果您只需要数组字符串,您可以删除外部 json_decode
.
最简单的方法是生成 json 并转换回数组。
$resource = new ModelResource($model);
$array = json_decode($resource->toJson(), true);