跳至内容

Eloquent:序列化

简介

在使用 Laravel 构建 API 时,你通常需要将模型及其关系转换为数组或 JSON。Eloquent 包含方便的方法来进行这些转换,以及控制哪些属性包含在模型的序列化表示中。

lightbulb

有关处理 Eloquent 模型和集合 JSON 序列化的更强大的方法,请查看有关 Eloquent API 资源 的文档。

序列化模型和集合

序列化为数组

要将模型及其加载的 关系 转换为数组,应使用 toArray 方法。此方法是递归的,因此所有属性和所有关系(包括关系的关系)都将转换为数组。

use App\Models\User;
 
$user = User::with('roles')->first();
 
return $user->toArray();

attributesToArray 方法可用于将模型的属性转换为数组,但不包括其关系。

$user = User::first();
 
return $user->attributesToArray();

你还可以通过在集合实例上调用 toArray 方法将整个 模型集合 转换为数组。

$users = User::all();
 
return $users->toArray();

序列化为 JSON

要将模型转换为 JSON,应使用 toJson 方法。与 toArray 类似,toJson 方法是递归的,因此所有属性和关系都将转换为 JSON。你还可以指定任何 PHP 支持的 JSON 编码选项。

use App\Models\User;
 
$user = User::find(1);
 
return $user->toJson();
 
return $user->toJson(JSON_PRETTY_PRINT);

或者,你可以将模型或集合转换为字符串,这将自动在模型或集合上调用 toJson 方法。

return (string) User::find(1);

由于模型和集合在转换为字符串时会转换为 JSON,因此你可以直接从应用程序的路由或控制器中返回 Eloquent 对象。当从路由或控制器返回 Eloquent 模型和集合时,Laravel 会自动将其序列化为 JSON。

Route::get('/users', function () {
return User::all();
});

关系

当 Eloquent 模型转换为 JSON 时,其加载的关系将自动作为 JSON 对象上的属性包含在内。此外,尽管 Eloquent 关系方法使用“驼峰式命名法”方法名称定义,但关系的 JSON 属性将使用“蛇形命名法”。

从 JSON 中隐藏属性

有时你可能希望限制模型的数组或 JSON 表示中包含的属性,例如密码。为此,请在模型中添加 $hidden 属性。$hidden 属性数组中列出的属性将不包含在模型的序列化表示中。

<?php
 
namespace App\Models;
 
use Illuminate\Database\Eloquent\Model;
 
class User extends Model
{
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = ['password'];
}
lightbulb

要隐藏关系,请将关系的方法名称添加到 Eloquent 模型的 $hidden 属性中。

或者,你可以使用 visible 属性来定义应包含在模型的数组和 JSON 表示中的属性的“允许列表”。当模型转换为数组或 JSON 时,$visible 数组中不存在的所有属性都将被隐藏。

<?php
 
namespace App\Models;
 
use Illuminate\Database\Eloquent\Model;
 
class User extends Model
{
/**
* The attributes that should be visible in arrays.
*
* @var array
*/
protected $visible = ['first_name', 'last_name'];
}

临时修改属性可见性

如果要使给定模型实例上的某些通常隐藏的属性可见,可以使用 makeVisible 方法。makeVisible 方法返回模型实例。

return $user->makeVisible('attribute')->toArray();

同样,如果要隐藏一些通常可见的属性,可以使用 makeHidden 方法。

return $user->makeHidden('attribute')->toArray();

如果要临时覆盖所有可见或隐藏属性,则可以使用 setVisiblesetHidden 方法。

return $user->setVisible(['id', 'name'])->toArray();
 
return $user->setHidden(['email', 'password', 'remember_token'])->toArray();

将值追加到 JSON

有时,在将模型转换为数组或 JSON 时,你可能希望添加数据库中没有对应列的属性。为此,首先为该值定义一个 访问器

<?php
 
namespace App\Models;
 
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Database\Eloquent\Model;
 
class User extends Model
{
/**
* Determine if the user is an administrator.
*/
protected function isAdmin(): Attribute
{
return new Attribute(
get: fn () => 'yes',
);
}
}

如果希望访问器始终追加到模型的数组和 JSON 表示中,则可以将属性名称添加到模型的 appends 属性中。请注意,即使访问器的 PHP 方法使用“驼峰式命名法”定义,属性名称通常也使用其“蛇形命名法”序列化表示进行引用。

<?php
 
namespace App\Models;
 
use Illuminate\Database\Eloquent\Model;
 
class User extends Model
{
/**
* The accessors to append to the model's array form.
*
* @var array
*/
protected $appends = ['is_admin'];
}

将属性添加到 appends 列表后,它将包含在模型的数组和 JSON 表示中。appends 数组中的属性也将尊重模型上配置的 visiblehidden 设置。

运行时追加

在运行时,可以使用 append 方法指示模型实例追加其他属性。或者,可以使用 setAppends 方法覆盖给定模型实例的整个追加属性数组。

return $user->append('is_admin')->toArray();
 
return $user->setAppends(['is_admin'])->toArray();

日期序列化

自定义默认日期格式

可以通过覆盖 serializeDate 方法来自定义默认序列化格式。此方法不会影响日期在数据库中存储的格式。

/**
* Prepare a date for array / JSON serialization.
*/
protected function serializeDate(DateTimeInterface $date): string
{
return $date->format('Y-m-d');
}

自定义每个属性的日期格式

可以通过在模型的 转换声明 中指定日期格式来自定义各个 Eloquent 日期属性的序列化格式。

protected function casts(): array
{
return [
'birthday' => 'date:Y-m-d',
'joined_at' => 'datetime:Y-m-d H:00',
];
}