6

我正在使用 Laravel API 资源并希望将实例的所有部分转换为数组。

在我的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 资源解析为数组?

4

3 回答 3

9

通常,您应该这样做:

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();

如果您只需要获取字符串

于 2018-09-27T17:04:14.150 回答
2

最简单的方法是生成 json 并转换回数组。

$resource = new ModelResource($model);
$array = json_decode($resource->toJson(), true);
于 2021-07-13T16:46:36.900 回答
1

迟到的答案,您也可以选择:

Route::get('/some-url', function() {
    $preorder = Preorder::find(1); 
    $jsonResponse = json_decode(json_encode(new PreorderResource($preorder->load('driver'))));
    echo $jsonResponse;
});

如果您只想要数组字符串,请删除外部json_decode.

于 2021-03-20T08:36:35.777 回答