介绍

所有以多个模型为查询结果的 Eloquent 方法的返回值都是 php Illuminate\Database\Eloquent\Collection 类的实例, 其中包括了通过 php get 方法和关联关系获取的结果。Eloquent 集合对象扩展了 Laravel 的基础集合类,因此它自然地继承了许多用于流畅地处理 Eloquent 模型的底层数组的方法。请务必查看 Laravel 集合文档以了解所有这些有用的方法!

所有的集合都可作为迭代器,你可以像遍历普通的 PHP 数组一样来遍历它们:

  1. use App\Models\User;
  2. $users = User::where('active', 1)->get();
  3. foreach ($users as $user) {
  4. echo $user->name;
  5. }

然而,正如前面所提到的,集合远比数组要强大,而且暴露了一系列直观的、可用于链式调用的 map/reduce 方法。打个比方,我们可以删除所有不活跃的模型,然后收集余下的所有用户的名字。

  1. $names = User::all()->reject(function (User $user) {
  2. return $user->active === false;
  3. })->map(function (User $user) {
  4. return $user->name;
  5. });

Eloquent 集合转换
在大多数 Eloquent 集合方法返回一个新的 Eloquent 集合实例的前提下,php collapsephp flattenphp flipphp keysphp pluck,以及 php zip 方法返回一个基础集合类的实例。 如果一个 php map 方法返回了一个不包含任何模型的 Eloquent 集合,它也会被转换成一个基础集合实例。

可用的方法

所有 Eloquent 的集合都继承了 Laravel collection 对象;因此, 他们也继承了所有集合基类提供的强大的方法。

另外, php Illuminate\Database\Eloquent\Collection 类提供了一套上层的方法来帮你管理你的模型集合。大多数方法返回 php Illuminate\Database\Eloquent\Collection 实例;然而,也会有一些方法, 例如 php modelKeys, 它们会返回基于 php Illuminate\Support\Collection 类的实例。

append
contains
diff
except
find
fresh
intersect
load
loadMissing
modelKeys
makeVisible
makeHidden
only
setVisible
setHidden
toQuery
unique

append($attributes) {.collection-method .first-collection-method}
可以使用php append方法来为集合中的模型追加属性。 可以是数组或单个属性追加:

  1. $users->append('team');
  2. $users->append(['team', 'is_admin']);

contains($key, $operator = null, $value = null) {.collection-method}
php contains 方法可用于判断集合中是否包含指定的模型实例。这个方法接收一个主键或者模型实例:

  1. $users->contains(1);
  2. $users->contains(User::find(1));

diff($items) {.collection-method}
php diff 方法返回不在给定集合中的所有模型:

  1. use App\Models\User;
  2. $users = $users->diff(User::whereIn('id', [1, 2, 3])->get());

except($keys) {.collection-method}
php except 方法返回给定主键外的所有模型:

  1. $users = $users->except([1, 2, 3]);

find($key) {.collection-method}
php find 方法查找给定主键的模型。如果 php $key 是一个模型实例, php find 将会尝试返回与主键匹配的模型。 如果 php $key 是一个关联数组, php find 将返回所有数组主键匹配的模型:

  1. $users = User::all();
  2. $user = $users->find(1);

fresh($with = []) {.collection-method}
php fresh 方法用于从数据库中检索集合中每个模型的新实例。此外,还将加载任何指定的关联关系:

  1. $users = $users->fresh();
  2. $users = $users->fresh('comments');

intersect($items) {.collection-method}
php intersect 方法返回给定集合与当前模型的交集:

  1. use App\Models\User;
  2. $users = $users->intersect(User::whereIn('id', [1, 2, 3])->get());

load($relations) {.collection-method}
php load 方法为集合中的所有模型加载给定关联关系:

  1. $users->load(['comments', 'posts']);
  2. $users->load('comments.author');
  3. $users->load(['comments', 'posts' => fn ($query) => $query->where('active', 1)]);

loadMissing($relations) {.collection-method}
如果尚未加载关联关系,则 php loadMissing 方法将加载集合中所有模型的给定关联关系:

  1. $users->loadMissing(['comments', 'posts']);
  2. $users->loadMissing('comments.author');
  3. $users->loadMissing(['comments', 'posts' => fn ($query) => $query->where('active', 1)]);

modelKeys() {.collection-method}
php modelKeys 方法返回集合中所有模型的主键:

  1. $users->modelKeys();
  2. // [1, 2, 3, 4, 5]

makeVisible($attributes) {.collection-method}
php makeVisible 方法使模型上的隐藏属性可见 :

  1. $users = $users->makeVisible(['address', 'phone_number']);

makeHidden($attributes) {.collection-method}
php makeHidden 方法隐藏模型属性 :

  1. $users = $users->makeHidden(['address', 'phone_number']);

only($keys) {.collection-method}
php only 方法返回具有给定主键的所有模型:

  1. $users = $users->only([1, 2, 3]);

setVisible($attributes) {.collection-method}
php setVisible方法临时覆盖集合中每个模型的所有可见属性:

  1. $users = $users->setVisible(['id', 'name']);

setHidden($attributes) {.collection-method}
php setHidden方法临时覆盖集合中每个模型的所有隐藏属性:

  1. $users = $users->setHidden(['email', 'password', 'remember_token']);

toQuery() {.collection-method}
php toQuery 方法返回一个 Eloquent 查询生成器实例,该实例包含集合模型主键上的 php whereIn 约束:

  1. use App\Models\User;
  2. $users = User::where('status', 'VIP')->get();
  3. $users->toQuery()->update([
  4. 'status' => 'Administrator',
  5. ]);

unique($key = null, $strict = false) {.collection-method}
php unique 方法返回集合中所有不重复的模型,若模型在集合中存在相同类型且相同主键的另一模型,该模型将被删除:

  1. $users = $users->unique();

自定义集合

如果你想在与模型交互时使用一个自定义的 php Collection 对象,你可以通过在模型中定义 php newCollection 方法来实现:

  1. <?php
  2. namespace App\Models;
  3. use App\Support\UserCollection;
  4. use Illuminate\Database\Eloquent\Collection;
  5. use Illuminate\Database\Eloquent\Model;
  6. class User extends Model
  7. {
  8. /**
  9. * 创建新的Elquent Collection实例。
  10. *
  11. * @param array<int, \Illuminate\Database\Eloquent\Model> $models
  12. * @return \Illuminate\Database\Eloquent\Collection<int, \Illuminate\Database\Eloquent\Model>
  13. */
  14. public function newCollection(array $models = []): Collection
  15. {
  16. return new UserCollection($models);
  17. }
  18. }

一旦在模型中定义了一个 php newCollection 方法,每当 Eloquent 需要返回一个 php Illuminate\Database\Eloquent\Collection 实例的时候,将会返回自定义集合的实例取代之。如果你想使每一个模型都使用自定义的集合,可以在一个模型基类中定义一个 php newCollection 方法,然后让其它模型派生于此基类。