Retrieving all morphedByMany relations in Laravel Eloquent(在 Laravel Eloquent 中检索所有 morphedByMany 关系)
问题描述
在 Laravel 文档中,有以下示例用于检索 morphedByMany
关系,这是多对多的多态关系.
In the Laravel documentation, there is the following example for retrieving morphedByMany
relations, which are many-to-many polymorphic relations.
Laravel 多对多多态关系文档
namespace App;
use IlluminateDatabaseEloquentModel;
class Tag extends Model
{
/**
* Get all of the posts that are assigned this tag.
*/
public function posts()
{
return $this->morphedByMany('AppPost', 'taggable');
}
/**
* Get all of the videos that are assigned this tag.
*/
public function videos()
{
return $this->morphedByMany('AppVideo', 'taggable');
}
}
我如何获得一个查询/集合中所有 morphed
关系的列表,例如 posts
和 videos
,然后如果我后来添加了照片
(或任何东西),那也是?
How would I get a list of all morphed
relations in one query / collection, for instance, posts
and videos
, and then if I later added photos
(or anything), that too?
推荐答案
我在这里使用一个技巧:
I use a trick here:
为您的连接表 taggable
创建一个模型 Taggable
并添加一个 hasMany
关系到 Tag
模型.
Create a Model Taggable
for your connection table taggable
and add a hasMany
relation to the Tag
model.
public function related()
{
return $this->hasMany(Taggable::class);
}
在你的 Taggable
模型中创建一个 morphedTo
关系.
Within your Taggable
model create a morphedTo
relation.
public function taggables()
{
return $this->morphTo();
}
现在您可以通过调用获取所有使用该标签的模型:
Now you can get all models which are using the tag by calling:
$tagged = Tag::with('related.taggables');
这篇关于在 Laravel Eloquent 中检索所有 morphedByMany 关系的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Laravel Eloquent 中检索所有 morphedByMany 关系
基础教程推荐
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01